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

body {
  background: #0a0a1a;
  overflow: hidden;
  font-family: 'Press Start 2P', monospace;
  color: #00ffcc;
  user-select: none;
  -webkit-user-select: none;
}

canvas {
  display: block;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

#ui-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

#ui-overlay > * {
  pointer-events: auto;
}

a.remix-link {
  position: fixed;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: #0f6;
  text-decoration: none;
  opacity: 0.5;
  z-index: 100;
  pointer-events: auto;
}

a.remix-link:hover {
  opacity: 1;
  text-shadow: 0 0 8px #0f6;
}