@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Overpass:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@100..900&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Overpass:ital,wght@0,100..900;1,100..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');



:root {
    --Bright-orange: hsl(31, 77%, 52%);
    --Dark-cyan: hsl(184, 100%, 22%);
    --Very-dark-cyan: hsl(179, 100%, 13%);
    --Transparent-white-paragraphs: hsla(0, 0%, 100%, 0.75);
    --Very-light-gray-background-headings-buttons: hsl(0, 0%, 95%);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    /* font-family: "Fraunces", serif; */
    font-family: "Lexend Deca", serif;
    font-weight: 350;
    
}

.main {
    width: 60%;
    height: 70vh;
    /* background-color: black; */
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.sedans {
    background-color: var(--Bright-orange);
    border-radius: 5px 0 0 5px ;
    padding: 40px;
}

.sedans h1 {
    line-height: 70px;
    font-family: "Big Shoulders Display", serif;
}

.sedans p {
    margin-top: 10px;
    color: var(--Transparent-white-paragraphs);
    font-size: small;
    line-height: 20px;

}

button {
    border: none;
    width: 70%;
    height: 40px;
    border-radius: 20px;
    color: var(--Bright-orange);
    background-color: white;
    margin-top: 60px;

}

.SUVs {
    background: var(--Dark-cyan);
    padding: 40px;
}

.SUVs h1 {
    line-height: 70px;
    font-family: "Big Shoulders Display", serif;
}

.SUVs p {
    margin-top: 10px;
    color: var(--Transparent-white-paragraphs);
    font-size: small;
    line-height: 20px;
}

.button {
    color: var(--Dark-cyan);
    /* font-family: "Big Shoulders Display", serif; */
}

.Luxury {
    background-color: var(--Very-dark-cyan);
    padding: 40px;
    border-radius: 0 5px 5px 0 ;
}

.Luxury h1 {
    line-height: 70px;
    font-family: "Big Shoulders Display", serif;
}

.Luxury p {
    margin-top: 10px;
    color: var(--Transparent-white-paragraphs);
    font-size: small;
    line-height: 20px;
}

#button {
    color: var(--Very-dark-cyan);
}