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: white;
}

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

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

#testData {
  position: absolute;
  font-family: monospace;

  left: 20px;
  bottom: 15px;
  color: black;
  white-space: nowrap;
  z-index: 1000;
}

#settings {
  position: absolute;
  font-family: monospace;
  right: 20px;
  top: 20px;
  color: black;
  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;
}
