:root {
    --primary-color: hsl(31, 77%, 52%);
    --secundary-color: hsl(184, 100%, 22%);
    --terciary-color: hsl(179, 100%, 13%);


    --neutral-white: hsla(0, 0%, 100%, 0.75);
    --neutral-gray: hsl(0, 0%, 95%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100vh;
    height: 100%;
    font-family: 'Lexend Deca', 'Poppins', 'Public Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    width: 75vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sedans, .suvs, .luxury {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: start;
    justify-content: space-evenly;
    flex-direction: column;
    padding: 2.5rem;
}

h1 {
    font-family: 'Big Shoulders';
    font-size: 3.5rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--neutral-white);
}

p {
    color: var(--neutral-gray);
    line-height: 2rem;
    font-weight: 300;
}

.btn-learn-more {
    min-width: 160px;
    width: 100%;
    max-height: 50px;
    height: 100%;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.sedans .btn-learn-more {
    color: var(--primary-color);
}

.suvs .btn-learn-more {
    color: var(--secundary-color);
}

.luxury .btn-learn-more {
    color: var(--terciary-color);
}

.sedans {
    background-color: var(--primary-color);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.suvs {
    background-color: var(--secundary-color);
}

.luxury {
    background-color: var(--terciary-color);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

@media (max-width: 768px) {
    .container {
        width: 80%;
        height: 60%;
        flex-direction: column;
        margin: 4rem 0;
    }

    .btn-learn-more {
        height: 50px;
    }

    .sedans {
        border-bottom-left-radius: 0;
        border-top-right-radius: 10px;
    }

    .luxury {
        border-top-right-radius: 0;
        border-bottom-left-radius: 10px;
    }
}