body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: monospace;
  font-size: 0.75rem;
  line-height: 1.25rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  overflow: hidden;
}

#mount {
  width: 100vw;
  height: 100vh;
}

canvas {
  vertical-align: middle;
}

#crosshair {
  opacity: 0.3;
}

#crosshair > span {
  background: #fff;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#crosshair > span:nth-child(1) {
  width: 8px;
  height: 2px;
}

#crosshair > span:nth-child(2) {
  width: 2px;
  height: 8px;
}

