@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0 0;
    background-color: hsl(0, 0%, 95%);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    margin-bottom: 20vh;
}

.container {
    margin: 20vh auto 20px;
    display: flex;
    flex-direction: row;
}

.container>div {
    width: 20vw;
    max-height: 100vh;
    height: auto;
}

.sedans {
    background-color: hsl(31, 77%, 52%);
}

.suvs {
    background-color: hsl(184, 100%, 22%);
}


.luxury {
    background-color: hsl(179, 100%, 13%)
}

.sedans,
.suvs,
.luxury {
    padding: 40px;
    color: white;
}

h1 {
    color: hsl(0, 0%, 95%);
    font-family: "Big Shoulders", sans-serif;
    font-weight: 700;
}

p {
    color: hsla(0, 0%, 100%, 0.75);
    margin-bottom: 50px;
    word-spacing: 5px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    line-height: 1.6;

}

button {
    background-color: hsl(0, 0%, 95%);
    padding: 10px 30px;
    border-radius: 20px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    border: 0;
    cursor: pointer;
}

.sedans button {
    color: hsl(31, 77%, 52%);
}

.suvs button {
    color: hsl(184, 100%, 22%);
}

.luxury button {
    color: hsl(179, 100%, 13%);
}

.attribution {
    font-size: 11px;
    text-align: center;

}

.attribution a {
    color: hsl(228, 45%, 44%);
}

@media (max-width:1060px) {
    .container {
        display: flex;
        flex-direction: column;
    }

    .container>div {
        width: 50vw;
    }
}


@media (max-width:560px) {

    .container {
        display: flex;
        flex-direction: column;

    }

    .container>div {

        width: 80vw;
    }
}