html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--nd-font-nav);
  color: var(--nd-text-dark);
  background: var(--nd-gray-bg);
}

a {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--nd-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

/* Typography Overrides (Decreased Sizes) */
.display-4 {
  font-size: clamp(2rem, 3.5vw, 3rem) !important;
}

h1,
.h1 {
  font-size: 2.25rem !important;
}

h2,
.h2 {
  font-size: 1.75rem !important;
}

h3,
.h3 {
  font-size: 1.5rem !important;
}

h4,
.h4 {
  font-size: 1.25rem !important;
}

h5,
.h5 {
  font-size: 1.1rem !important;
}

h6,
.h6 {
  font-size: 0.95rem !important;
}