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

body {
  margin: 0;
  background: #111;
  overflow-x: hidden;
}

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

nav {
  font-family: monospace;
  font-size: 0.85em;
  padding: 12px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

.scroll-container {
  height: 300vh;
  position: relative;
  z-index: 1;
  pointer-events: none;
}

#label {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  font-size: 0.8em;
  color: #aaa;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 10;
}

#progress {
  position: fixed;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  font-family: monospace;
  font-size: 0.75em;
  color: #555;
  letter-spacing: 0.05em;
  pointer-events: none;
  z-index: 10;
}
