body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(8, 22, 44);
  font-family:
    -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  box-sizing: border-box;
}

#canvas {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

#instructions {
  position: fixed;
  width: 100%;
  color: #fff;
  font-size: 25px;
  opacity: 0.2;
  letter-spacing: 1px;

  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;

  user-select: none;
  pointer-events: none;
}
