html, body, main, canvas {
  width: 100vw;
  height: 100vh;

  background-color: cornflowerblue;
  color: white;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;

  display: flex;
  justify-content: center;
  align-items: center;
}

.excalibur-scale {
  transform-origin: 0 0;
  transform: scale(var(--pixel-conversion), var(--pixel-conversion));
}

#speed-gauge {
  position: fixed;
  bottom: 1em;
  right: 1em;
  text-align: end;
  font-size: 2rem;
}

#lap-counter {
  position: fixed;
  top: 1em;
  right: 1em;
  text-align: end;
  font-size: 2rem;
}


