*{
    margin: 0;
    padding: 0;
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url("sky.jpg");
    background-size: cover;
    background-position: center;
    position: relative;
}

.road-cover {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.road {
    background-image: url("road.jpg");
    width: 500%;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    animation-name: highway;
    animation-iteration-count: infinite;
    animation-duration: 5s;
    animation-timing-function: linear;
}

@keyframes highway {
    100% {
        transform: translateX(-3000px);
    }
}

.city-cover {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: absolute;
    bottom: 200px;
}

.city {
    background-image: url("city.png");
    width: 500%;
    height: 200px;
    position: absolute;
    bottom: 0;
    animation-name: city-animation;
    animation-iteration-count: infinite;
    animation-duration: 15s;
    animation-timing-function: linear;
}

@keyframes city-animation {
    100% {
        transform: translateX(-2000px);
    }
}

.car-wap {
    width: 400px;
    height: 200px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 100px;
}

.car-img {
    width: 400px;
    height: 200px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.wheel {
    width: 75px;
    height: 75px;
    z-index: 1;
    position: absolute;
    animation-name: wheel;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    animation-timing-function: linear;
}

.wheel-01 {
    left: 33px;
    bottom: 15px;
    position: absolute;
}

.wheel-02 {
    bottom: 15px;
    right: 47px;
    position: absolute;
}

@keyframes wheel {
    100% {
        transform: rotate(360deg);
    }
}