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

body {
  background: #0a0012;
  overflow: hidden;
  font-family: 'Orbitron', sans-serif;
  -webkit-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

canvas {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
}

#footer {
  position: fixed;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
}

#footer a {
  color: rgba(180, 120, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s;
}

#footer a:hover {
  color: rgba(180, 120, 255, 0.8);
}