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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  hanging-punctuation: first last;
  interpolate-size: allow-keywords;
}

html,
body {
  min-height: 100%;
  background: var(--void);
  color: var(--paper);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  cursor: none;
}

body.is-touch,
body.no-cursor {
  cursor: auto;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
  border-radius: 0;
}

button {
  cursor: none;
}

body.is-touch button,
body.no-cursor button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--copper);
  color: var(--void);
}

:focus-visible {
  outline: 1px solid var(--copper);
  outline-offset: 3px;
}

#cookie-root {
  display: contents;
}
