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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
}

#footer {
  position: fixed;
  bottom: 8px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  line-height: 1.6;
  z-index: 10;
  pointer-events: none;
}

#footer span {
  color: rgba(255, 255, 255, 0.15);
}

#footer a {
  color: rgba(255, 176, 0, 0.25);
  text-decoration: none;
  pointer-events: all;
}

#footer a:hover {
  color: rgba(255, 176, 0, 0.5);
}