body {
  margin: 0;
  overflow: hidden;
}

canvas {
  display: block;
}

#instructions {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

#info {
  width: 400px;
  max-height: 600px;
  height: max-content;
  overflow: auto;
  color: white;
  background-color: black;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 10px;
  border-radius: 4px;
}