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

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

#game {
  display: block;
  width: 100%;
  height: 100%;
  cursor: default;
}

#footer-links {
  position: fixed;
  bottom: 10px;
  left: 0;
  right: 0;
  text-align: center;
  font-family: monospace;
  font-size: 11px;
  z-index: 10;
  pointer-events: none;
}

#footer-links a {
  color: #4a5a3a;
  text-decoration: none;
  margin: 0 10px;
  pointer-events: auto;
  transition: color 0.2s;
}

#footer-links a:hover {
  color: #8aaa6a;
}
