

.car {
  height: 100px;
  width: 380px;
  background-image: url(car_body.png);
  background-size: cover;
  background-repeat: no-repeat;
  left: 444px;
  bottom: 300px;
}

.wheelA img {
  width: 77px;
  position: relative;
  top: 42px;
  left: 42px;
}

.wheelB img {
  width: 77px;
  position: relative;
  top: -39px;
  left: 235px;
}

.wheel1 img {
  width: 77px;
  position: relative;
  top: 42px;
  left: 42px;
  animation: wheelRotation linear 0.16s infinite;
}

.wheel2 img {
  width: 77px;
  position: relative;
  top: -39px;
  left: 235px;
  animation: wheelRotation linear 0.16s infinite;
}

@keyframes wheelRotation {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes carMove {
  100% {
    transform: translateX(-500vw);
  }
}


