body {
    margin: 0;
    position: fixed;
}
.redbull{
    background: #011423;
    background: radial-gradient(circle,rgba(1, 20, 35, 1) 0%, rgba(0, 0, 0, 1) 100%);
    display: flex;
    font-family: "Orbitron", sans-serif;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    margin: 0;
    color: white;
}
.jaguar{
    background: #2b521f;
    background: radial-gradient(circle,#24451a 0%, #101d0c 100%);
    display: flex;
    font-family: "Orbitron", sans-serif;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    margin: 0;
    color: white;
}
.stewart{
    background: #ffffff;
    background: radial-gradient(circle,#ffffff 0%, #d6d6d6 100%);
    display: flex;
    font-family: "Orbitron", sans-serif;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
    margin: 0;
    color: black;
    button{
        color: black;
    }
}
.header{
    color: white;
    text-align: center;
    height: 15vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    position: fixed;
    width: 100vw;
    margin: 0;
    background-color: #0c0c11;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 15vh;
    margin-right: 40px;
}
nav a{
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
}
nav a:hover{
    color: #ff0000;
    transition: color 0.5s ease;
}
a:hover{
    transform: scale(1.02);
    transition: transform 0.4s ease;
}
.header img{
    max-width: 40%;
    max-height: 40%;
    object-fit: contain;
    margin-left: 40px;
}
.main{
    margin-top: 15vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 85vh;
    gap: 60px;
}
.logof{
    max-width: 20%;
    max-height: 20%;
}
.car{
    max-width: 70%;
    max-height: 70%;
    transition: ease-out 0.4s;
}
.car:hover{
    transform: scale(1.1);
    transition: transform 0.4s ease;
}
.bottom{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}
button{
    background: none;
    border: none;
    font-size: 50px;
    font-weight: 900;
    color: white;
    height: 100px;
    width: 100px;
    text-align: center;
}
button:hover{
    transform: scale(1.02);
    transition: transform 0.4s ease;
    background-color: rgba(0, 0, 0, 0.132);
    border-radius: 100px;
}