html { 
    position: relative;
    background: linear-gradient(#4c6659,#5c7d6b,#5c7d6b,#4c6659);
    width: 100vw;
    height: 100vh;
}

h1 {
  color:#2b3b32;
  font-family: 'Allura', cursive;
  text-align: center;
  font-size: 100px;
  font-style: italic; 
}

h3 {
  color: #b8d5c7;
  text-align: center;
  margin-top: -100px;
  font-style: italic;
  font-weight: lighter;
  font-size: 20px;
}

hr {
    color: #2b3b32;
}

.nav-logo {
 height:125px;
 width: 125px;
 background-color: #5c7d6b;
 border-radius: 100px;
 filter: drop-shadow(0 0 1.5rem black);
}

.logo{
    background-color: black; 
    height: 40px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

hr{
    width: 100vw;
}
   
.nav{
     width: 50vw;
     list-style: none;
     display: flex;
     justify-content: space-around;
     align-items: center;
}
   
#top-nav, vr{
     color: #b8d5c7;
     text-decoration: none;
     display: flex;
     justify-content: space-between;
}
   
.saved{
     width: 20vw;
     list-style: none;
     display: flex;
     justify-content: space-around;
     margin-left: auto;
}
  


h2{
    text-align: center;
    margin-top: -50px;
    margin-left: 90px;
    margin-right: 90px;
    display: block;
    line-height: 30px;
    color:#2b3b32;
}


img{
    width: 300px;
    height: 300px;
    filter: drop-shadow(0 0 1.5rem black);
    border-radius: 5px;

}

.bottom-nav {
    background-color: black; 
    height: 45px;
    width: 100vw;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#B8D5C7;
}

.facebook-logo, .insta-logo, .contact-logo {
    height: 40px;
    width: 40px;
    filter: drop-shadow(0 0 1.5rem black);
    background-color: #B8D5C7;
    border-radius: 10px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: -40px;
  
}

.bar {
  display: flex;
  align-items: flex-end;
  width: 25px;
  height: 3px;
  background-color:#b8d5c7;
  margin: 5px;
  transition: background-color 0.3s ease;
}

.hidden-menu {
  display: none;
  list-style-type: none;
  padding: 0;
}




@media (max-width: 768px) {
  .hamburger-btn {
      display: block;
      float: right;
  }

  
  .show-menu {
      display: block;
  }
  .listings{
      grid-template-columns: 1fr;
  }
  #top-nav, vr{
      display: none;
  }
  h1{
    font-size: 50px;
    margin-bottom: 100px;
  }
  h3{
    font-size: 15px;
    margin-bottom: 50px;
  }
  .nav-logo{
    height: 100px;
    width: 100px;
  }
  #nav{
    text-decoration: none;
    display: flex;
    justify-content: right;
    align-items: center;
    color: black;
  }
  .profile{
    margin-top: 50px;
  }
  h2{
    font-size: 20px;
  }
  hr{
    display: none;
  }
}

  
@media (min-width: 769px) and (max-width: 1024px){
    .listings{
      grid-template-columns: 2fr 2fr;
    }
    #top-nav, vr{
      color: #b8d5c7;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      
 }
 h1{
  font-size: 75px;
  margin-bottom: 100px;
}
h3{
  font-size: 20px;
  margin-bottom: 50px;
}
.nav-logo{
  height: 100px;
  width: 100px;
}
hr{
  display: none;
}
}


@media (min-width: 1025px){
    .listings{
      grid-template-columns: 2fr 2fr 1fr;
    }
}
