body {
  background: #0c0f14;
  color: white;
  margin: 0;
  font-family: 'JetBrains Mono', monospace;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 1.5rem 0;
  background: transparent; /* no navbar background */
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50%;
  transition: color 0.2s ease, background 0.25s ease;
}

.nav-link:hover {
  color: #969696;
  background: transparent;
}

.nav-link.active {
  background: white;
  color: black !important;
  border-radius: 7.5px;
  padding: 0.4rem 0.8rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.637);
}
