* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #24333d;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #2b3c47 0%, #1e2a33 100%);
  font-family: var(--font-sans);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--ochre);
  outline-offset: 4px;
}

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

h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}

em {
  font-style: normal;
  color: var(--accent);
}

[hidden] {
  display: none !important;
}

::selection {
  color: var(--cream);
  background: var(--accent-dark);
}
