* {
  box-sizing: border-box;
  text-rendering: optimizeLegibility;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

:root {
  --white: #f7f8fa;
  --black: #111111;
}

body,
html {
  touch-action: none;
}

body {
  margin: 0;
  background-color: var(--black);
}

canvas {
  width: 100vw;
  height: 100vh;
  display: absolute;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

p,
a {
  font-family: roc-grotesk, sans-serif;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 16pt;
}

p:last-child {
  margin: 0;
}

a:hover {
  font-style: italic;
}

.body-text {
  margin: 0 auto;
  padding: 24px;
  max-width: 840px;
}
