body {
    font-family: 'Poppins';
    background-color: white;
}

h1 {
    font-family: 'Montserrat';
}

.car-item {
    animation: scroll 10s linear infinite;
    animation-direction: alternate;
}

@keyframes scroll {
    0% { transform: translate3d(0, 0, 0);}
    100% { transform: translate3d(-650px, 0, 0);}
}