body {
  margin: 0;
  overflow: hidden; /* Prevent scrollbars */
  background-color: #000;
  color: white;
  font-family: Monospace;
}

canvas {
  display: block; /* Remove default inline spacing */
}

#info {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px;
  border-radius: 5px;
}

#message {
  margin-top: 5px;
  font-size: 0.9em;
}

#crosshair {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  pointer-events: none; /* Allow clicking through */
}