* {
  margin: 0;
  padding: 0;
}
.hide {
  display: none;
}

.car {
  width: 50px;
  height: 70px;
  background-image: url("car.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 90px;
  position: absolute;
  bottom: 120px;
}

.enemy {
  width: 50px;
  background-image: url("car2.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 100px;
  position: absolute;
  bottom: 120px;
}

.gameArea {
  width: 400px;
  height: 100vh;
  background-color: #17181a;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-right: 7px dashed #c8d6e5;
  border-left: 7px dashed #c8d6e5;
}

.lines {
  width: 10px;
  height: 100px;
  background: white;
  position: absolute;
  margin-left: 195px;
}

.score {
  position: absolute;
  top: 15px;
  left: 40px;
  background-color: greenyellow;
  width: 300px;
  height: 70px;
  text-align: center;
  color: rgb(11, 58, 1);
  font-size: 2rem;
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: bold;
  box-shadow: 0 5px 5px #777;
  line-height: 70px;
  text-transform: uppercase;
}

.startScreen {
  position: absolute;
  background-color: rgb(11, 61, 61);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: whitesmoke;
  z-index: 1;
  text-align: center;
  border: 1px solid #ff6b6b;
  padding: 15px;
  margin: auto;
  width: 50%;
  cursor: pointer;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  letter-spacing: 5;
  font-size: 20px;
  word-spacing: 3;
  line-height: 30px;
  text-transform: uppercase;
  box-shadow: 0 5px 5px #777;
  font-weight: bold;
}

.carGame {
  width: 100%;
  height: 100vh;
  background-color: green;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
