body, html {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: Arial, sans-serif;
}

body {
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.container {
    padding: 20px;
}

.contact-info {
    margin-top: 20px;
}
.car-image {
    max-width: 90%; /* Ensures the image is not wider than its container */
    max-height: 70vh; /* Adjust the percentage as necessary */
    height: auto; /* Maintains the aspect ratio */
    border: 5px solid white;
    box-shadow: 0 0 10px black;
}