@import url("/assets/primer-primitives.css");

@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --font-geist-sans: "Geist", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-geist-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --font-inter: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-inter-tight: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, sans-serif;
  --font-space-grotesk: "Space Grotesk", Inter, ui-sans-serif, sans-serif;
  --ink: var(--bgColor-default);
  --ink-soft: var(--bgColor-muted);
  --paper: var(--fgColor-default);
  --paper-muted: var(--fgColor-muted);
  --line: var(--borderColor-muted);
  --line-strong: var(--borderColor-default);
  --accent: var(--fgColor-accent);
  --accent-soft: var(--bgColor-accent-muted);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bgColor-default);
}

body {
  margin: 0;
  background: var(--bgColor-default);
  color: var(--fgColor-default);
  font-family: var(--font-geist-sans), Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--bgColor-default);
  background: var(--fgColor-accent);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
