body, html {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.header {
    text-align: center;
    padding: 20px;
    z-index: 2; 
    background-color: #333;
    color: #fff;
}

h1, p {
    margin: 0;
}

.carousel-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.carousel {
    height: 100vh;
}

.carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.buttons {
    text-align: center;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; 
}

.login-button,
.view-cars-button {
    display: inline-block;
    padding: 19px 30px;
    font-size: 20px;
    text-decoration: none;
    color: #000000;
    background-color: #ffffff;
    border: none;
    border-radius: 5px;
    margin: 0 10px;
}

.login-button:hover,
.view-cars-button:hover {
    background-color: #ffffff;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2; 
}
