header {
    background-image: url("../public/Car_blur_black.jpg");
}
h3 {
    font-size: 25px;
    margin-bottom: 0;
}
.cars {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.offer {
    color: #F49739;
    font-weight: 600;
    font-size: 2rem;
}

@media screen and (max-width: 1300px) {
    .cars {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 800px) {
    .cars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 600px) {
    .cars {
        grid-template-columns: repeat(1, 1fr);
    }

}