@import url('https://fonts.googleapis.com/css2?family=Roboto&family=Saira+Condensed:wght@200;400;500;600&display=swap');

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
}
header{
    height: 100px;
}
img{
    height: 75px;
}
a{
text-decoration: none;
}
ul{
  list-style: none;
}
li{
  text-decoration: none;
}

span{
  font-size: 30px;
  color: #f6f8f2;
  font-weight: 400;
}
header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 1px solid #f6f8f2;
    width: 100vw;
    position: fixed;
    top: 0;
    background-color: #02132C;
}
.navbar{
    min-height: 70px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

logo{
    cursor: pointer;
}


.hamburger{
    display: none;
    cursor: pointer;
  }
  .bar{
    display: block;
    width: 30px;
    height: 4px;
    border-radius: 3px;
    margin: 5px auto;
    --webkit-transition: all 0.8s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #f6f8f2;
}
header .nav-menu{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.nav-menu{
    list-style: none;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
}
.nav-menu li{
    display: inline-block;
    padding: 0px 40px;
}
.nav-menu li a{
    transition: all 0.3s ease 0s;
    color: #f6f8f2;
    font: bold;
    font-size: 1.2rem;
    font-weight: 500;
}
.nav-menu li a:hover{
    color: #A3B18A;
}
.navbar ul{
    margin: 0;
}

.cover{
  background-image: url("/imgs/AI\ Chatbot.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #02132C;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95vh;
  margin-top: 90px;
}

@media (max-width: 768px){
      .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);
      }
     .navbar{
        position: fixed;
        background-color: #02132C;
        width: 100%;
        top: 15;
        right: -83%;
      }
      .nav-menu{
        position: fixed;
        right: -100%;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #02132C;
        transition: 0.3s;
        color: #f6f8f2;
        height: 100vh;
      }
   
      .nav-menu.active{
        right: 0;
        top: 100px;
        transition: all .5s ease;
      }
      .nav-menu.active li a{
        color: #f6f8f2;
      }
      header{
        display: flex;
        justify-content: center;
        align-items: center;
      }
    .cover{
      background-image: url("/imgs/AI\ Chatbot.png");
      background-position: center;
      background-repeat: no-repeat;
      background-color: #02132C;
      background-size: 100%;
      display: flex;
      justify-content: center;
      height: 100vh;
      margin-top: 40px;
    }
    
    
      
}

@media (max-width: 425px){

      .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);
      }
     .navbar{
        position: fixed;
        background-color: #02132C;
        width: 100%;
        top: 15;
        right: -75%;
      }
      .nav-menu{
        position: fixed;
        right: -100%;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #02132C;
        transition: 0.3s;
        color: #f6f8f2;
        height: 60vh;
      }
   
      .nav-menu.active{
        right: 0;
        top: 100px;
        transition: all .5s ease;
      }
      .nav-menu.active li a{
        color: #f6f8f2;
      }
      .cover{
        background-image: url("/imgs/AI\ Chatbot.png");
        background-position: center;
        background-repeat: no-repeat;
        background-color: #02132C;
        background-size: 100%;
        display: flex;
        justify-content: center;
        height: 100vh;
        margin-top: 10px;
      }
      header{
        display: flex;
        justify-content: center;
        align-items: center;
      }
      
   
      
}

