#navbar-container {
  width: 100%;
  z-index: 2;
  background-color: var(--white-100);
  padding: 27px 35px;
  box-shadow: 0px 3px 19px 0px rgba(48, 48, 48, 0.3);

  display: flex;
  justify-content: space-evenly;
  align-items: center;

  position: fixed;
}

#hamburguer {
  display: none;
}

#hamburguer-list {
  display: none;
}

#navbar-menu {
  display: flex;
  gap: 34px;
  font-size: 18px;
}

#navbar-menu li {
  cursor: pointer;
  border-top: 2px solid var(--black);
  padding-top: 6px;
  transition: all 0.2s;
}

#navbar-menu li:hover {
  filter: opacity(0.6);
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  #navbar-container {
    align-items: center;
  }

  #navbar-container ul {
    display: none;
  }

  #hamburguer-list {
    flex-direction: column;
    position: absolute;
    height: 27px;
    top: 87px;
    z-index: 2;
    background-color: var(--white-100);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    height: fit-content;
    animation: topToBottom 0.3s ease-in;
  }

  #navbar-menu {
    padding: 20px 0;
  }

  #hamburguer-list ul {
    display: flex;
    flex-direction: column;
    font-size: 18px;
    padding: 30px;
  }

  #hamburguer {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    position: absolute;
    left: 18px;
  }

  #navbar-container img {
    height: 30px;
  }

  @keyframes topToBottom {
    0% {
      opacity: 0;
    }

    50% {
      opacity: 0.5;
    }

    100% {
      opacity: 1;
    }
  }
}
