body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.container {
    text-align: center;
}

h1 {
    margin: 20px;
    font-size: 2em;
    color: #ff5c5c;
}

.username {
    text-decoration: none;
    color: #ff5c5c;
    font-weight: bold;
    transition: color 0.3s ease;
}

.username:hover {
    color: #ff0000;
}

.car-image {
    max-width: 80%;
    height: auto;
    border-radius: 15px;
    margin-top: 20px;
}
