body {
    background-color: #F6e4b6;
    margin: auto;
    color: black;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    font-weight: 400;
}
* {
    box-sizing: border-box;
}
h1 {
    font-size: 2.5em;
    font-weight: 400;
}
h2 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 2.125em;
    font-weight: 800;
}

/*SCROLL*/
* {
    scroll-behavior: smooth;
}

.scroll {
    position: fixed;
    bottom: 20px;
    z-index: 999;
    right: 10px;
    padding: 10px;
    font-weight: 600;
    color: black;
    text-decoration: none;
    text-align: center;
    border: 2px solid red;
    background-color: rgba(255, 0, 0, 0.35);
}

/*END OF SCROLL*/

/*HEADER*/

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #af816a;
}
.flex-container > div {
    background-color: white;
    box-shadow: black 0.625em 0.625em 0.625em;
    margin: 1.5em 0 1.7em 0;
    padding: 10px 30px;
}
.flex-item-left {
    width: 27%;
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
}
.flex-item-right {
    width: 63%;
    font-size: 1em;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: 600;
    text-align: right;    
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;

}
/*END OF HEADER*/

/*NEW NAV SECTION*/

/* Add a black background color to the top navigation */
.topnav {
    background-color: #af816a;
    overflow: hidden;
    margin: 2em 0;
  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
    float: left;
    display: block;
    color: black;
    font-weight: 600;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 20px;
  }
  
  /* Add an active class to highlight the current page */
  .active {
    background-color: #898d6f;
    color: white;
  }
  
  /* Hide the link that should open and close the topnav on small screens */
  .topnav .icon {
    display: none;
  }
  
  /* Dropdown container - needed to position the dropdown content */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Style the dropdown button to fit inside the topnav */
  .dropdown .dropbtn {
    font-size: 20px;
    border: none;
    outline: none;
    color: black;
    font-weight: 600;
    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;
  }
/*END OF NEW NAV SECTION*/

/*GALLERY SECTION*/

.heading {
    margin: auto;
    max-width: 65%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.19) 0.625em 0.625em 0.625em;
    padding: 0.2em 1.5em 1em 1.5em;
}

#center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

div.gallery {
    border: 0.5em solid white;
    background-color: white;
    outline: 0.06em solid black;
    box-shadow: black 0.25em 0.25em 0.25em;
    margin-bottom: 1em;
}

div.gallery:hover {
    border: 0.5em solid rgba(137, 141, 111, 0.7);
    background-color: white;
    outline: 0.1em solid black;
    box-shadow: black 0.25em 0.25em 0.25em;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 1em;
    text-align: center;
}

.responsive {
    padding: 0 0.383em;
    float: left;
    width: 30%;
    margin: auto;
}


.clearfix:after {
    content: "";
    display: table;
    clear: both;
}


/*END OF GALLERY SECTION*/



/*FOOTER*/

.footer {
    background-color: #af816a;
    padding: 0.32em 1.25em;
    text-align: center;
    margin-top: 2em;
}

.sticky {
    position: fixed;
    bottom: 0;
    width: 100%;
    padding-bottom: 6em;
}

/*END OF FOOTER*/
