
@keyframes fadeIn {
   from {
       opacity: 0;
       transform: translateY(-20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}


 /* NAVBAR STYLES START */
#navbar {
   display: flex;
   justify-content: space-between;
   align-items: center;
   max-width: 1097px;
   margin: auto;
   margin-top: 20px;
   margin-bottom: 40px;
   padding: 0 20px;
   transition: 0.4s ease-in-out;
   user-select: none;
   animation: fadeIn 1s ease-in-out;
}

#navbar h1 {
   margin: 0;
   color:#40a3ff;
   font-weight: 380;
}

#nav-toggle {
   display: none;
   font-size: 30px;
   cursor: pointer;
   font-weight: 100;
   color: rgb(167, 167, 167);
   transition: 0.4s ease-in-out;
}

#nav-toggle:hover {
   color: #40a3ff;
}

#navbar a {
   text-decoration: none;
   padding: 20px;
   font-size: 20px;
   color: #858585;
   font-weight: 300;
   transition: 0.2s ease-in-out;
}

#navbar a:hover {
   color: #40a3ff;
}

#nav-links {
   display: flex;
   align-items: center;
}

#nav-links.active {
   display: block;
   position: absolute;
   top: 60px;
   right: 0;
   background-color: white;
   width: 200px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   padding: 20px;
   z-index: 1000;
   border-radius: 5px;
}

#nav-links.active a {
   display: block;
   padding: 10px 0;
}

@media screen and (max-width: 768px) {
   #navbar h1 {
      font-size: 28px;
      margin: 0;
      margin-top: 5px;
      margin-right: 4px;
      color:#40a3ff;
      font-weight: 380;
   }
   
   #nav-links {
       display: none;
       flex-direction: column;
       -webkit-tap-highlight-color: transparent;
   }
   
   #nav-toggle {
      font-size: 26px;
       display: block;
   }
}

/* NAVBAR STYLES END */



 /* NAVBAR STYLES END */