html,
body {
  height: 100%;
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

canvas {
  display: block; /* Removes the line break on top of the canvas */
  background-color: black;
}

#headerCanvas {
  background-color: black; /* Red */
}

#score {
  position: absolute;
  font-family: monospace;
  color: white;
  left: 20px;
  top: 22px;
  white-space: nowrap;
  z-index: 1000;
}

#instructions {
  position: absolute;
  font-size: 16px;
  font-family: monospace;
  text-align: left;
  color: white;
  left: 25%;
  top: 160px;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1000;
}

#pauseStatus {
  position: absolute;
  font-size: 28px;
  font-family: monospace;
  text-align: center;
  color: white;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 1000;
}

#settings {
  position: absolute;
  font-family: monospace;
  color: white;
  right: 20px;
  top: 22px;
  white-space: nowrap;
  z-index: 1000;
  text-align: right;
}

#collisionData {
  position: absolute;
  font-family: monospace;
  font-size: 10px;
  left: 20px;
  top: 100px;
  color: black;
  white-space: pre-wrap;
  z-index: 1000;
  max-width: 800px;
  overflow: auto;
}

#predictedCollisionData {
  position: absolute;
  font-family: monospace;
  font-size: 10px;
  left: 500px;
  top: 100px;
  color: black;
  white-space: pre-wrap;
  z-index: 1000;
  max-width: 800px;
  overflow: auto;
}

#predictedFirstCollisionData {
  position: absolute;
  font-family: monospace;
  font-size: 10px;
  left: 900px;
  top: 100px;
  color: black;
  white-space: pre-wrap;
  z-index: 1000;
  max-width: 800px;
  overflow: auto;
}
