body {
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
  background: #0a0a0a;
  color: white;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  background: white;
  left: 0;
  bottom: -4px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.02);
  pointer-events: none;
}

::-webkit-scrollbar {
  display: none;
}