
* {
  transition: all 0.3s ease;
}

/* Glass */
.glass {
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.08);
}

/* Nav underline */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: black;
  transition: 0.3s;
}
.nav-link:hover::after {
  width: 100%;
}

/* Menu */
.menu-open {
  right: 0 !important;
}
.overlay-active {
  opacity: 1 !important;
  pointer-events: auto !important;
}