html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-13);
  line-height: var(--lh-20);
  color: var(--color-text-primary);
  background: var(--color-app-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(17, 24, 39, 0.14);
}

a {
  color: inherit;
  text-decoration: none;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-11);
  color: var(--color-text-secondary);
}

:where(button, a, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid rgba(17, 24, 39, 0.25);
  outline-offset: 2px;
}

.hidden {
  display: none !important;
}
