*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: linear-gradient(to right, #000dff, #0072ff);
    height: 100vh;
    padding: 10px;
}

.bg-image{
    background-image: url(./img/Img_1.png);
    width: 80%;
    height: 700px;
    margin: auto;
    background-size: cover;
    box-shadow: 5px 5px 10px black;
    position: relative;
    overflow: hidden;
}

.ground{
    background-image: url(./img/Img_02.png);
    height: 150px;
    width: 1500000%;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: left-move 15s linear forwards;
}

.car{
    position: absolute;
    bottom: 49px;
    left: 33%;
    z-index: 1;
    animation: hop-up 0.7s linear 21 alternate forwards;
}

@keyframes left-move{
    100%{
        transform: translate(-2000px);
    }
}

@keyframes hop-up{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translateY(-3px);
    }
    100%{
        transform: translateY(0);
    }
}