/* Resets and element defaults. */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--nk-font-sans);
  color: var(--nk-text);
  background: var(--nk-surface);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }

a { color: var(--nk-blue); text-decoration: none; }
a:hover { color: var(--nk-navy); }

button { font: inherit; color: inherit; }

img, svg, video { max-width: 100%; }

:focus-visible {
  outline: 3px solid var(--nk-blue);
  outline-offset: 3px;
  border-radius: 2px;
}

[hidden] { display: none !important; }
