* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: monospace;
  background: #111;
  color: #fff;
  overflow-x: hidden;
}

nav {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 100;
}

nav a {
  color: #aaa;
  text-decoration: none;
  font-family: monospace;
  font-size: 0.85em;
}

nav a:hover {
  color: #fff;
}

.intro,
.outro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
  color: #555;
}

.pin-wrap {
  position: relative;
  width: 100vw;
  height: 100vh;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.overlay-text {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.progress-text {
  font-size: 3em;
  color: #fff;
  margin: 0;
  letter-spacing: -0.03em;
}

.hint {
  font-size: 0.75em;
  color: #555;
  margin: 8px 0 0;
}
