* {
  margin: 0;
  padding: 0;
  font-family: 'Lobster', cursive;
}

.game {
  background-image: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hide {
  display: none;
}

.startScreen {
  width: 500px;
  height: 107px;
  line-height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  margin: auto;
  background-color: rgb(43, 205, 226);
  text-align: center;
  border-bottom: 2px solid rgb(132, 197, 197);
}

.score,
.highScore {
  position: absolute;
  top: 10px;
  left: 20px;
  text-align: center;
  background-color: rgb(100, 224, 156);
  width: 200px;
  color: rgb(59, 40, 40);
  line-height: 40px;
  border-radius: 4px;
  font-size: 1.2em;
}

.ClickToStart {
  cursor: pointer;
}

.gameArea {
  height: 100vh;
  width: 60vh;
  margin: auto;
  position: relative;
  background-color: rgb(32, 32, 32);
  overflow: hidden;
  border-left: 4px dashed white;
  border-right: 4px dashed white;
}

.car {
  background: url(../images/car.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 150px;
  width: 100px;
  position: absolute;
  top: 520px;
}

.Opponents {
  background: url(../images/opponentcar.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 150px;
  width: 100px;
  position: absolute;
  top: 520px;
}

.roadLines {
  height: 100px;
  width: 10px;
  background-color: white;
  position: absolute;
  margin-left: 50%;
  margin-right: 50%;
}
