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

html, body {
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

canvas {
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

.overlay {
  position: fixed;
  top: 1rem;
  left: 1rem;
  color: white;
  text-shadow: 0 0 5px black;
  pointer-events: none;
  opacity: 0.7;
}

.overlay h1 {
  font-size: 1.5rem;
  font-weight: 500;
}

.overlay p {
  font-size: 0.9rem;
  font-weight: 300;
}
