* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    margin: 0 auto;
    max-width: 1440px;
}

.header {
    width: 100%;
    height: 100vh;
    background-color: #d3d3d3;
    background-image: url(images/car-back.png);
    background-position: center;
    background-size: 50% 50%;
    background-repeat: no-repeat;
    padding: 40px;
    position: relative;
}

.header h3 {
    position: absolute;
    bottom: 10%;
    left: 0;
    right: 0;
    font-size: 48px;
    text-align: center;
    color: #000080;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav img {
    flex: 1;
    text-align: left;
}

.nav-links {
    flex: 1;
    text-align: right;
}

/*----- join the waiting list button -----*/
.hero-btn {
    display: inline-block;
    text-decoration: none;
    color: #2e0c66;
    border: 3px solid #FFA500;
    border-radius: 40px;
    padding: 20px;
    color: #001F3F;
    font-family: Roboto;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
    background: transparent;
    cursor: pointer;
    border-radius: 90px;
    border: 2px solid #FFA500;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(15px);
}

/*----- Autostell button -----*/
.btn {
    width: 300px;
    flex-shrink: 0;
    display: inline-block;
    text-decoration: none;
    color: #FFA500;
    border-radius: 0 40px 40px 0;
    padding: 20px;
    background: #001F3F;
    position: pointer;
    cursor: pointer;
    text-align: center;
    margin-left: -40px;

    color: #FFA500;
    font-family: Roboto;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: capitalize;
}

/*----- Simplified Car Transactions -----*/


@media (max-width: 768px) {
    .btn {
        font-size: 22px;
        width: 200px;
    }

    .header {
        background-size: 90% 350px;
    }

    .header h3{
        font-size: 36px;
         bottom: 15%;
    }
}
