/* website/static/website/style.css */

body {
    font-family: 'Roboto', sans-serif;
}

/* Add a subtle transition to car cards for a more dynamic feel */
.car-card {
    transition: all 0.3s ease-in-out;
}

.car-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1), 0 6px 6px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}