/* Colour Combs
   Hex Codes
   Mint Cream  : #F2F7F3 
   Eerie Black : #141414
   Emerald : #40DD8C
   Jet : #292929
*/

/* Font Families */
/* Logo */ 
/* font-family: 'Righteous', cursive; */
/* Text */
/* font-family: 'Open Sans', sans-serif; */
/* font-family: 'Caveat', cursive; */
*{
    margin: 0;
    padding:0;
    box-sizing: border-box;
}
body{
   background: #141414;
    font-family:'Open Sans', sans-serif; ;
}
/* Navigation Bar CSS*/
header{
    background: #40DD8C;
  }
  
  header::after{
     content: '';
     display: table;
     clear: both;
  }
  .logo{
     font-family: 'Righteous', cursive;
     float: left ;
     padding: 15px 0;
     font-size: 3.2rem;
     margin-left: 70px;
     color: #141414  ;
     text-transform: uppercase;
     cursor: pointer;
  }
  .logo span{
   color: #F2F7F3;
  }
  .logo a{
   color: inherit;
   text-decoration: none;
}
  nav{
     min-height: 60px;
     float: right;
     position: relative;
  }
  nav ul{
    margin: 0;
    padding: 0;
    list-style: none; 
  }
  nav li{
     display: inline-block;
     margin: 0 35px;
     padding-top:50px ;
  
     position: relative;
  }
  
  nav a{
     font-weight: 400;
     align-items: center ;
     color: #141414;
     text-decoration: none;
     text-transform: uppercase;
     cursor: pointer;
  }
  
  nav a:hover{
     color: #F2F7F3;
     transition: 0.4s ease;
  }
  
  /* nav a::before{
     content: '';
     display: block;
     height: 5px;
     background-color: #292929 ;
     position: absolute;
     border-radius: 5px;
  
     top: 30px;
     width: 0%;
  
  
  
     transition: all ease-in-out 350ms
  } */
  
  nav a:hover::before{
     width: 100%;
  }
  
  /* Hamburger-Menu-Navbar CSS */
  .hamburger{
     display: none;
     cursor: pointer;
     position: absolute;
     top: 35px;
     right:20px;
  
  }
  .bar{
     display: block;
     width: 25px;
     height: 3px;
     margin: 5px auto;
     border-radius: 3px;
     -webkit-transition: all 0.3s ease-in-out ;
     transition: all 0.3s ease-in-out;
     background: #F2F7F3;
  }
  
  @media(max-width: 1030px){
     .logo{
        font-size: 2.7rem;
        display: block;
     }
     .hamburger{
        display: block;
     }
     
     .hamburger.active .bar:nth-child(2){
        opacity: 0;
  
     }
     .hamburger.active .bar:nth-child(1){
        transform: translateY(8px) rotate(45deg);
  
     }
     .hamburger.active .bar:nth-child(3){
        transform: translateY(-8px) rotate(-45deg);
  
     }
     .nav-menu{
        z-index: 100;
        position: fixed;
        left: -100%;
        flex-direction: column;
        top: 60px;
        background: #40DD8C;
        display: flex;
        width: 100%;
        margin-top: 40px;
        height: max-content;
        min-height:100%;
        transition: 0.5s ease-in-out;
     }
     
     .nav-items{
        font-size: 1.2rem;
        margin: 16px 10px;
     }
     .nav-menu.active{
        left: 0;
     }
  }
  /* Navigation-Bar End */

  .project-container{
   min-width:100% ;
   min-height: 100% ;
   width: 1000px;
   height: 1000px;
    border: 6px solid #40DD8C;
    margin: 35px auto;
  }
  .project-title{
   color: #F2F7F3;
   display: flex;
   justify-content: center;
   font-size: 3rem;
   margin-bottom: 300px;
  }
  .project-grid h3{
   color: #F2F7F3;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 3rem;
  }


  
/* Footer CSS */
.footer{
   margin-top: 55px;
   width: 100%;
   height: 100px;
   display: flex;
   flex-direction: row;
   justify-content: center;
   align-items:center ;
}
.footer-links{
   width: 150px;
   display: inline-block;
}
.footer-icons{
   color: #40DD8C;
   cursor: pointer;
   font-size: 1.8rem;
   transition: 300ms;

}
.footer-icons:hover{
   color: #F2F7F3;   
}


/* Footer CSS End */
@media(max-width: 1030px){
   .footer, .footer-icons{
      width: 600px;
      justify-content: center;
      align-items: center;
   }
}
