body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
}

html {
  scroll-behavior: smooth;
}

/* Respect users who prefer reduced motion. */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

h1,
h2,
h3 {
  line-height: 1.1;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

:focus-visible {
  outline: 0.2rem solid currentColor;
  outline-offset: 0.2rem;
}

.no-wrap {
  white-space: nowrap;
}
