* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  width: 100%; height: 100%;
  background: #050510;
  overflow: hidden;
  font-family: 'Orbitron', monospace;
}
#canvas {
  display: block;
  margin: 0 auto;
}
#footer {
  position: fixed;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  z-index: 100;
}
#footer a {
  color: #555;
  text-decoration: none;
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  transition: color 0.3s;
}
#footer a:hover { color: #00f0ff; }