* {
  margin: 0;
  padding: 0;
  user-select: none;
  -moz-user-select: none;
}

html {
  width: 100%;
  height: 100%;
}

body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game {
  width: 100vw;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#car1 {
  position: absolute;
  top: 40%;
  left: calc(50% + 25px);
}

#car2 {
  position: absolute;
  top: 40%;
  left: calc(50% - 125px);
}

#car3 {
  position: absolute;
  top: 60%;
  left: calc(50% + 25px);
}

#car4 {
  position: absolute;
  top: 60%;
  left: calc(50% - 125px);
}

.speedometer {
  position: absolute;
  display: flex;
  flex-direction: row;
  width: 20%;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-color: black;
  border-width: 5px;
  font-size: xx-large;
  font-weight: 900;
  background-color: white;
}
