html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: hsl(0, 0%, 95%);
}

.sedans {
    background-color: hsl(31, 77%, 52%);
    border-radius: 4% 0 0 4%;
}

.suvs {
    background-color: hsl(184, 100%, 22%);
}

.luxury {
    background-color: hsl(179, 100%, 13%);
    border-radius: 0 4% 4% 0;
}

section {
    width: 13%;
    height: 25rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-top: 2rem;
    font-size: 15px;
    color: white;
}

main {
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100vh;
    align-items: center;
}

p {
    margin-top: 2rem;
    margin-bottom: 6rem;
    color: hsla(0, 0%, 100%, 0.75);
}

button {
    padding: 1rem 2rem;
    height: 3rem;
    border-radius: 1.5rem;
    border: none;
    background-color: white;
    font-weight: 700;
}

.sedans button {
    color: hsl(31, 77%, 52%);
}

.suvs button {
    color: hsl(184, 100%, 22%);
}

.luxury button {
    color: hsl(179, 100%, 13%);
}

h2 {
    font-family: 'Big Shoulders Display', sans-serif;
    font-size: 30px;
}

.container {
    border-radius: 25px;
}

@media (max-width: 1440px) {
    main {
        flex-direction: column;
        height: 200vh;
    }

    section {
        align-items: center;
        width: 200px;
        padding-bottom: 2rem;
    }

    footer {
        padding-top: 10px;
    }

    .sedans {
        background-color: hsl(31, 77%, 52%);
        border-radius: 4% 4% 0 0;
    }

    .suvs {
        background-color: hsl(184, 100%, 22%);
    }

    .luxury {
        background-color: hsl(179, 100%, 13%);
        border-radius: 0 0 4% 4%;
    }
}