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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #1a1a2e;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

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

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

#footer a {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  color: rgba(180,180,200,0.5);
  text-decoration: none;
  letter-spacing: 0.5px;
}

#footer a:hover {
  color: rgba(220,220,240,0.8);
}