nav {
  position: fixed;
  top: 12px;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;

  z-index: 100;
}

.nav-links {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;

  list-style: none;

  border-radius: 27px;
  background: rgba(31, 31, 31, 0.50);
  backdrop-filter: blur(12px);

  font-weight: 300;
  font-size: 18px;
}

.nav-links li {
  cursor: pointer;
}

.nav-links li a {
  color: white;
  text-decoration: none;
}

.hamburger {
  display: none;
  font-size: 2.8rem;
  cursor: pointer;
  padding: 0px 16px 8px 16px;
  border-radius: 36px;
  background: rgba(31, 31, 31, 0.50);
  backdrop-filter: blur(12px);
}

.nav-links a.active {
  text-decoration: underline;
}

@media (max-width: 480px) {
  nav {
    top: 4px;
  }

  .nav-links {
    /* display: none; */

    font-size: 16px;
    gap: 18px;
    padding: 14px 26px;
  }

  /* .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  nav {
    top: 0;
    justify-content: flex-end;
  } */
}