body, html {
  height: 100%;
  background-color: #FFFdd0;
  padding: 0;
  margin: 0;
  background-image: url("/images/temp_landing.jpg");
  background-size: cover;
  width: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  }
.pic{
  height: 100%;
  background-position: center;
  background-size: cover;
  text-align: center;  
}
.titleContact{
    color: #800020;
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18pt;
  }
  /* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    float: center;
    width: 60%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  input[type=telephone], select, textarea {
    width: 60%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
  }
  /* Style the submit button with a specific background color etc */
  input[type=submit] {
    background-color: #4CAF50;
    width: 60%;
    color: white;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    cursor: pointer;
  }
  
  /* When moving the mouse over the submit button, add a darker green color */
  input[type=submit]:hover {
    background-color: #45a049;
  }
  /* Add a background color and some padding around the form */
.container {
    margin: 0;
    position: relative;
    top: 20%;
    left: 24%;
    width: 50%;
    background-color: #800020;
    padding: 20px;
    text-align: center;
    display: block;
  }
.container p{
  color: #fffdd0;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
  /* Add a black background color to the top navigation */
.topnav {
    background-color: #333;
    overflow: hidden;
  }
  .topnav button.icon{
      background-color: #333;
  }
  #logo{
  float: left;
  position: fixed;
  z-index: 1;
}
.spacing{
  top:50%;
  left:20%;
}

/* Style the links inside the navigation bar */
.topnav a {
  float: right;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
  display: none;
}
.iconbtn{
  background: #333;
  border: none;
}
/* Dropdown container - needed to position the dropdown content */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
  font-size: 17px; 
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
  display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  a img{display: none;}
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav button.icon{
      background-color: #333;
  }
  .topnav a.icon {
      background-color: #333;
    float: right;
    display: block;
  }
  .titleAbout{
      font-size: 16pt;
      top: 20vh;
  }
  .box{
      top: 40vh;
  }
  /* .container{
    top: 30%;
    width: 300px;
    left: 5%;
  } */
  
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;
  z-index: 1;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}