:root {
    --bg: #082220;
    --grey: rgba(246,249,240,.5);
  }

*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  transition:all .2s cubic-bezier(.34,1.12,.68,1.31);
}
   




body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  .header-font {
    font-family: "Signika";
  }
  
  .italic-font {
    font-family: "Courgette";
  }
  nav {
    width: 98%;
    height: 75px;
    background-color: var(--bg);
    line-height: 75px;
    padding: 0.5px 4rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 100;
  }
  
  nav .logo {
    float: left;
  }
  
  nav .logo p {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: white;
    text-transform: uppercase;
  }
  
  nav ul {
    float: right;
  }
  
  nav ul li {
    list-style: none;
    display: inline-block;
  }
  
  nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0px 20px;
  }
  
  nav ul li a:hover {
    color: white;
  }
  
  nav ul .active {
    color: white;
  }
  
  .checkbtn {
    color: white;
    font-size: 25px;
    cursor: pointer;
    float: right;
    display: none;
  }
  
  #check {
    display: none;
  }
  
  @media screen and (max-width: 990px) {
    nav {
      padding: 0px 50px;
    }
    .checkbtn {
      display: block;
    }
    nav .logo p {
      font-size: 30px;
    }
    nav ul {
      width: 100%;
      height: 100vh;
      background-color: var(--bg);
      position: fixed;
      top: 75px;
      left: -100%;
      text-align: center;
      transition: 0.4s ease;
    }
    nav ul li {
      display: block;
      margin: 60px 0px;
      line-height: 20px;
    }
    #check:checked ~ ul {
      left: 0;
    }
  }
  
  /*START hero section*/
  .hero-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url("images/hero-2.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  .hero-text {
    color: white;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 9.5rem;
    font-weight: 500;
    margin: 0;
    padding: 0;
    line-height: 0.6;
  }
  
  .hero-text p {
    font-size: 6rem;
    font-weight: 20px;
    margin: 0;
    padding: 0;
  }
  /*END hero section*/
  

.gallery{
    min-height: 100vh;
    background:#eee;
    padding-bottom: 100px;
}

.gallery .controls{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:20px 0;
    list-style: none;
}

.gallery .controls .buttons{
    height:40px;
    width: 140px;
    background:#fff;
    color:#666;
    font-size: 20px;
    line-height: 40px;
    cursor: pointer;
    margin:20px;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    text-align: center;
}

.gallery .controls .buttons.active{
    background:var(--bg);
    color:#fff;
}

.gallery .image-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .image-container .image{
    height:250px;
    width: 350px;
    overflow: hidden;
    border:15px solid #fff;
    box-shadow: 0 3px 5px rgba(0,0,0,.3);
    margin: 20px;
}

.gallery .image-container .image img{
    height: 100%;
    width:100%;
    object-fit: cover;
}

.gallery .image-container .image:hover img{
    transform: scale(1.4);
}

  
  /*----ENTIRE WEBSITE RESPONSIVENESS----*/
  @media (max-width: 550px){
    nav .logo p{
      font-size: 15px;
    }
    .hero-text h1{
      font-size: 3.5rem;
    }
    .gallery .controls{
      padding: 199px 3px;
      margin-top: 103px;
      padding-bottom: 0;
    }
  }