@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

#navbar {
  background-color: #FFFFFF;
  border-bottom: 5px solid #00FF00;
  font-family: Poppins, 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
    border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
#navbar ul{
  list-style: none;
  display: flex;
  margin-bottom: 0;
  padding-left: 0;
}
#navbar .home-li{
  margin-left: 10px;	
  margin-right: auto;
}
#navbar li{
  display: flex;
}
#navbar a{
  display: flex;
  text-decoration: none;
  color: #000000;
  padding: 0.2em 2em;
  transition: background-color 150ms ease;
}
#navbar a:hover{
  background-color: #00FF00;
}
#navbar a.active-link{
  border-bottom: 3px solid #000000;
}
#navbar a.accent-link{
  background-color: #FFDD00;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
#open-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  margin-left: auto;
  cursor: pointer;
}
#close-sidebar-button{
  display: none;
  background: none;
  border: none;
  padding: 1em;
  cursor: pointer;
}
#overlay{
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  inset: 0;
  z-index: 9;
  display: none;
}
.skip-link {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background-color: #FFDD00; 
  color: #ffffff; 
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.skip-link:focus {
  opacity: 1; 
  pointer-events: auto; 
  outline: 3px solid #ffffff; 
}
@media screen and (max-width: 700px) {
  #open-sidebar-button, #close-sidebar-button{
    display: block;
  }
  #navbar{
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: min(15em, 100%);
    z-index: 10;
    border-left: 1px solid #00FF00;
    transition: right 300ms ease-in-out;
  }
  #navbar.show{
    right: 0;
  }
  #navbar.show ~ #overlay{
    display: block;
  }
  #navbar ul{
    width: 100%;
    flex-direction: column;
  }
  #navbar a{
    width: 100%;
    padding-left: 2.5em;
  }
  #navbar a.active-link{
    border-bottom: none;
  }
  #navbar .home-li{
    margin-right: unset;
  }
}
me-li{
    margin-right: unset;
  }
}
