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

body {
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  font-family: 'Press Start 2P', monospace;
}

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

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

#footer a {
  font-family: 'Press Start 2P', monospace;
  font-size: 8px;
  color: #0ff3;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
}

#footer a:hover {
  color: #0ff;
  text-shadow: 0 0 10px #0ff;
}