@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders:opsz,wght@10..72,100..900&family=Lexend+Deca:wght@100..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-p: hsla(0, 0%, 100%, 0.75);
    --Very-light-gray-bg-head-btn: hsl(0, 0%, 95%);
}

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

body {
    background: hsl(0, 0%, 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh; 
}

.container {
    display: flex;
    color:hsl(0, 0%, 100%);
    margin-left: 10rem;
    margin-right: 10rem;
    max-width: 57rem;
}

.sedans {
    background: var(--Bright-orange);
    padding: 3rem;
    border-radius: 0.7rem 0 0 0.7rem;
}

.suvs {
    background: var(--Dark-cyan);
    padding: 3rem;
}

.luxury {
    background: var(--Very-dark-cyan);
    padding: 3rem;
    border-radius: 0 0.7rem 0.7rem 0;
}

h1 {
    font-family: "Big Shoulders", sans-serif;
    text-transform: uppercase;
    margin-top: 2rem;
}

p {
    font-size: 15px;
    font-family: "Lexend Deca", sans-serif;
    font-weight: 400;
    margin-top: 1.5rem;
    color:hsla(0, 0%, 100%, 0.75);
    line-height: 1.6rem;
}

button {
    font-family: "Lexend Deca", sans-serif;
    background: white;
    border-radius: 50px;
    width: 8rem;
    font-size: 15px;
    padding: 0.7rem;
    border: none;
    cursor: pointer;
    margin-top: 5rem;
}

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

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

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