/* =============================================
   GLOBAL RESETS & DEFAULTS
   ============================================= */
@font-face {
  font-family: 'Atkinson Hyperlegible Next';
  src: url('/fonts/AtkinsonHyperlegibleNext-VariableFont_wght.ttf')
    format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}


* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Atkinson Hyperlegible Next', system-ui, sans-serif;
  background: #0d0d0d;
  color: #ededed;
}

img {
  display: block;
}

a {
  text-decoration: none;
  color: #8ecae6;
  transition: color 0.2s ease;
}

a:visited {
  color: #6baed6;
}

a:hover,
a:focus-visible {
  color: #b8e2f2;
  text-decoration: underline;
}

a:active {
  color: #ffffff;
}