body, html {
    height: 100%;
    background-color: #fffdd0;
    padding: 0;
    margin: 0;
    }

.titleIndex{
    color: #fffdd0;
    position: relative;
    padding-top: 30vh;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 18pt;
}
/* stuff for the google map */
.iframe{
  margin: auto;
  position: relative;
  background-color: #800020;
  padding: 20px 20px;
  border-color: #333;
  width: 640px;
}
.iframe p{
  font-family:Arial, Helvetica, sans-serif;
  color: #f2f2f2;
  text-align: center;
}
.iframeM{
  margin: auto;
  position: relative;
  background-color: #800020;
  padding: 20px 20px;
  border-color: #333;
  width: 320px;
  display: none;
}
.iframeM p{
  font-family:Arial, Helvetica, sans-serif;
  color: #f2f2f2;
  text-align: center;
}
/* container element for the buttons */
.boxes{
  display: flex;
  /* width: 40%; */
  text-align: center;
  
}
.space{
    height: 10%;
}
.box img{
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 300px;
  border-radius: 10px;
  padding-bottom: 20px;
}
.box{
  margin: auto;
  width: 80%;
  text-align: center;
  color: #fffdd0;
  border-color: black;
  border: 1px solid black;
  background-color: #800020;
  padding: 10px;
  font-size: 14pt;
  font-family: Georgia, 'Times New Roman', Times, serif;
}
.box p{
  text-align: center;
  display: inline-block;
}
.box a{
  color: #fffdd0;
  margin-left: auto;
  margin-right: auto;
}
/* buttons style & position */
button{
    /* top: 50vh; */
    float: left;
    height: 40px;
    width: 100px;
    display: block;
    position: relative;
    margin-left: auto;
    background-color: #800020;
    border-color: #fffdd0;
    color: #f1f1f1
}
.button a{
    text-decoration: none;
    color: #f1f1f1
}
/* drop button style & position (should be the same as above) */
.dropbtn{
    display: block;
    
}
/* The container <div> - needed to position the dropdown content */
.dropdown {
    height: 40px;
    width: 100px;
    display: block;
    position: relative;
    margin: auto;
    float: left;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    
    display: none;
    margin: auto;
    background-color: #f1f1f1;
    width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  /* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #800020;}
  
  /* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media only screen and (max-device-width: 1366px) {
    .picIndex {
      background-attachment: scroll;
    }
    .titleIndex {margin-top: 175px;
    } 
    .box{
      width: 85%;
    }
    /* container element for the buttons */
    /* .boxes{
        display: block;
        padding-top: 4%;
        padding-left: 24%;
    } */
    .iframe{
        display: none;
        width: 300px;
        top: 30%;
        left: 5%;
      }
      .iframeM{
        margin: auto;
        display: block;
        width: 300px;
      }

    .box img{
      display: block;
      margin-left: auto;
      margin-right: auto;
      width: 75%;
      border-radius: 10px;
      padding-bottom: 20px;
    }
}