body {
    height: 100dvh;
    width: 100dvw;
    background-color: #0b1738;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: Arial, sans-serif;
    
}
/* =====================================================================

Top container 

===================================================================== */

.top_container {
    display: flex;
    flex-direction: row;
    max-width: 100dvw;
    max-height: 30dvh;
    height: 30dvh;
    width: 100dvw;
    margin-bottom: 3.5dvh;
}

.title {
    color: #fff;
    max-width: 65dvw;
    max-height: 30dvh;
    height: 100%;
    width: 65dvw;
}

.title h2 {
    font-size: 1.4rem;
    text-align: center;
    margin: 0;
}

.vehicle_img-container {
    background-image: url(images/car_image.png);
    max-width: 100%;
    max-height: 50%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 50%;
    position: relative;
    padding: 1.5rem;
    right: 10dvw;
    top: 3dvh;
}

.logo_container {
    flex: 1;
    background-image: url(images/backgroundless_logo.png);
    max-width: 35dvw;
    max-height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 35dvw;
    height: 100%;
    position: relative;
    right: 5dvw;
    top: 5dvh;
}


/* =====================================================================

Middle Container

===================================================================== */

.middle_container {
    padding: 10px 10px;
    position: relative;
    top: 3dvh;
    max-width: 100dvw;
    max-height: 40dvh;
    width: 94dvw;
    height: 40dvh;
    justify-content: center;
    justify-items: center;
    flex: 1;
    flex-wrap: wrap;
    overflow-wrap: break-word;
}

.middle_container p {
    color: #6abe00;
    font-size: larger;
}

/* =====================================================================

Bottom Container

===================================================================== */

.bottom_container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
    flex-direction: row;
    max-width: 95dvw;
    max-height: 50dvh;
    height: 50dvh;
    width: 95dvw;
    padding: 10px 20px 20px 0px;
}

.options_container {
    max-width: 45dvw;
    max-height: 45dvh;
    height: 45dvh;
    width: 45dvw;
    color: #38b6ff;
    text-align: left;
    flex: 1;
    padding: 0 10px 10px 10px;
}


.options_container p {
    font-size: medium;
    font-weight: 600;
    line-height: 1.5rem;
}

.contact_container {
    display: flex;
    text-align: center;
    max-width: 50dvw;
    max-height: 33dvh;
    height: 100dvh;
    width: 50dvw;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.contact_container h3 {
    color: #fff;
    flex: 1;
    max-width: 75%;
    max-height: 100%;
    height: 75%;
    font-size: x-large;
}

/* =====================================================================

Footer

===================================================================== */

.footer_container {
    position: relative;
    max-height: 20dvh;
    max-width: 95dvw;
    width: 100dvw;
    height: 20dvh;
    margin-bottom: 10px;

}

.footer_container p {
    color: #fff;
    font-size: large;
    padding: 0px 10px;
}

.middle_container,
.bottom_container,
.footer_container {
    position: static;
    margin-top: 1.5rem;
}

/* ====================================================
Responsive Design
==================================================== */

@media (min-width: 609px) {

    .title h2 {
        font-size: x-large;
    }

    .vehicle_img-container {
        padding: 2rem;
    }

    .logo_container {
        padding: 2rem;
        top: 1.5dvh;
        right: 3dvw;
    }

    .options_container p {
        font-size: large;
    }

    .contact_container h3 {
        font-size: xx-large;
    }

    .footer_container p {
        font-size: x-large;
    }

    .middle_container {
        margin-top: 20dvh;
    }
}

@media (min-width: 966px) {  

    .title h2 {
        font-size: xx-large;
    }

    .vehicle_img-container {
        padding: 3rem;
    }

    .middle_container {
        margin-top: 8dvh;
    }

    .middle_container p {
        font-size: x-large;
    }

    .middle_container,
    .bottom_container,
    .footer_container {
        position: static;
        margin-top: 8.5dvh;
    }

    .options_container p {
        font-size: x-large;
    }

    .contact_container h3 {
        font-size: 3rem;
    }

    .footer_container p {
        font-size: xx-large;
    }

}

@media (min-width: 1232px) {

    .title h2 {
        font-size: 2.5rem;
    }

    .vehicle_img-container {
        padding: 4rem;
    }

    .logo_container {
        padding: 5rem;
    }

    .middle_container p {
        font-size: xx-large;
    }

    .options_container p {
        font-size: x-large;
    }

    .contact_container h3 {
        font-size: 3.5rem;
    }

    .footer_container p {
        font-size: 3rem;
    }

    .middle_container,
    .bottom_container,
    .footer_container {
        position: static;
        margin-top: 15.5dvh;
    }

}

/* ==================================================================
max height
================================================================== */

@media (max-height: 615px) {

    .middle_container {
        max-height: 60dvh;
        height: 60dvh;
    }

    .bottom_container {
        max-height: 45dvh;
        height: 45dvh;
    }

    .options_container {
        max-height: 45dvh;
        height: 45dvh;
    }

    .footer_container {
        max-height: 30dvh;
        height: 30dvh;
    }

}

@media (max-height: 565px) {

    .middle_container p {
        font-size: large;
    }

    .options_container p {
        font-size: small;
    }


}

@media (max-height: 523px) {

    .bottom_container {
        max-height: 35dvh;
        height: 35dvh;
    }

    .options_container {
        max-height: 35dvh;
        height: 35dvh;
    }
    .options_container p {
        font-size: 0.8rem;
        line-height: 0.5rem;
    }
    

}

@media (max-height: 380px) {

    .middle_container p {
        font-size: medium;
    }

    .bottom_container {
        max-height: 45dvh;
        height: 45dvh;
    }

    .options_container {
        max-height: 45dvh;
        height: 45dvh;
    }

}

@media (max-height: 285px) {

    .middle_container p {
        font-size: small;
    }

    .bottom_container {
        max-height: 50dvh;
        height: 50dvh;
    }

    .options_container {
        max-height: 50dvh;
        height: 50dvh;
    }

    .options_container p {
        font-size: x-small;
    }

    .contact_container h3 {
        font-size: large;
    }

    .top_container {
        margin-bottom: 8dvh;
    }

    .footer_container p {
        font-size: 0.8rem;
    }

}

@media (max-height: 240px) {

    .bottom_container {
        max-height: 60dvh;
        height: 60dvh;
    }

    .options_container {
        max-height: 60dvh;
        height: 60dvh;
    }
    
    .top_container {
        margin-bottom: 15dvh;
    }

    .middle_container p {
        font-size: x-small;
    }


}

@media (max-height: 198px) {

    .top_container {
        margin-bottom: 20dvh;
    }

    .bottom_container {
        max-height: 70dvh;
        height: 70dvh;
    }

    .options_container {
        max-height: 70dvh;
        height: 70dvh;
    }

}
