:root {
  --flood: #1b22b8;
  --flood-deep: #0f1478;
  --stock: #ede9dc;
  --stock-dim: rgba(237, 233, 220, 0.76);
  --flare: #ff5a1f;
  --ink: #0a0a12;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font-display: "Anton", "Impact", "Haettenschweiler", "Arial Narrow", sans-serif;
  --font-body: "Chivo", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "Chivo Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  overflow-x: clip;
  background-color: var(--flood);
  /* Flood coat, then the halftone the second pass would sit on. */
  background-image:
    radial-gradient(rgba(237, 233, 220, .13) 1px, transparent 1.3px),
    radial-gradient(80% 55% at 50% 0%, var(--flood) 0%, var(--flood-deep) 100%);
  background-size: 5px 5px, auto;
  color: var(--stock);
  font-family: var(--font-body);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

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

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: .84;
  letter-spacing: .01em;
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--flare);
  outline-offset: 4px;
}

/* Fine print: the small type on a poster is always mono and always caps. */
.fine {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.dim {
  color: var(--stock-dim);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
