*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto;
  font-size: var(--font-size);
}

html,
body {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  width: 100vw;
  margin: 0;
  padding: 0;
  overflow: hidden;
  overscroll-behavior-y: none;
  background: var(--background);
  color: var(--text-color);
  accent-color: var(--sf-color);
  -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion) {
  
  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

a {
  color: var(--sf-color);
  font-weight: 600;
  text-underline-offset: 3px;
  text-decoration-color: var(--sf-color-light);
}