.nav-transparent {
  background-color: rgba(255, 255, 255, 0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.nav-blur {
  background-color: rgba(133, 133, 133, 0.71);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#mobile-menu {
  clip-path: circle(0% at 100% 0);
  transition: clip-path 0.5s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(133, 133, 133, 0.71);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  width: 100%;
  max-width: none;
  margin: 0;
}

#mobile-menu.open {
  clip-path: circle(150% at 100% 0);
  opacity: 1;
  pointer-events: auto;
}

#typing-name::after {
  content: "|";
  color: #ffffff;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}
