* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  touch-action: none;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0612;
}

#canvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

#controls {
  position: fixed;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
  z-index: 100;
}

#controls a {
  pointer-events: all;
  color: rgba(180, 160, 220, 0.4);
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  text-decoration: none;
}

#controls a:hover {
  color: rgba(200, 180, 255, 0.7);
}