body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.nav{

  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f4d03f;
  color: black;
  padding: 10px 20px 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  
}

.logo {
  font-size: 1.5rem;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: auto;
  gap:20px
}



.nav-links a {
  text-decoration: none;
  color: black;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff6600;
}


.menu-icon {
  display: none;
  cursor: pointer;
 
}


.btmNav a{
  color:black
}


.btmNav{

width:100%;
display: none;
flex-direction: column;
align-items: center;
background: #f4d03f;
position: fixed;
top:78px;
z-index: 2000;
margin: 0;
padding: 0;
border-top: 2px solid rgb(40, 39, 39);


}





@media screen and (max-width: 768px) {

  .nav-links {
      display: none;
      flex-direction: column;
      position: absolute;
      background-color: #333;
      top: 70px;
      left: -100%;
      width: 100%;
      transition: left 0.3s ease;
  }

  .nav-links li {
      margin: 0;
      text-align: center;
  }



  .btmNav li {
    width: 100%;
    padding: 10px 0px 10px 0px;
    text-decoration: none;
    color: black;
    transition: color 0.1s, background-color 0.3s; 
   display: flex;
   align-items: center;
   justify-content: center;
 
  }
  

  
  
  .btmNav li:hover {
    color: #ff6600;
    background-color: #e0e0e0; 

  }
  

  .menu-icon {
      display:block;
  }
}