:root{
    --Bright-orange: hsl(31, 77%, 52%);
    --Dark-cyan: hsl(184, 100%, 22%);
    --Very-dark-cyan: hsl(179, 100%, 13%);
    --Transparent-white: hsla(0, 0%, 100%, 0.75);
    --Very-light-gray: hsl(0, 0%, 95%);
}

html{
    display: flex;
    justify-content: center;
}
body{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
   /* border: 1px solid red;*/
}

footer p{
    color: black;
}

.container{
    width: 800px;
    height: 50vh;
    /*border: 1px solid blue;*/
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-radius: 10px;
    
   
}

section{
    /*border: 1px solid salmon;*/
    
    display: flex;
    justify-content: center;
    align-items: center;
       
}

section.sedan {
    border-radius: 10px 0 0 10px;
}

section.luxury {
    border-radius: 0 10px  10px 0;
}

.option{
    height: 80%;
    width: 75%;
   /* border: 1px solid rebeccapurple;*/
    display: flex;
    flex-direction: column;

}

.sedan{
    background-color: var(--Bright-orange);
}

.suv{
    background-color: var(--Dark-cyan);
}

.luxury{

    background-color: var(--Very-dark-cyan);
}
p{
    font-size: 15px;
    color: var(--Transparent-white);
    font-family: 'Lexend Deca', sans-serif;
    line-height: 20px;
    text-align: justify;
}
.icon{
    width: 100%;
    height: 15%;
    /*border: 1px solid greenyellow;*/
}
   

h1{
    color: var(--Very-light-gray);
    font-family: 'Big Shoulders Display', sans-serif;
    font-weight: 700;
    font-size: xx-large;
}

 button{
    width: 60%;
    height: 40px;
    padding: 4px 8px;
    border-radius: 25px;
    border: none;
    margin-top: auto;
    color: var(--Very-light-gray);
    font-family: 'Lexend Deca', sans-serif;
    cursor: pointer;

}

.sedan button{
    color: var(--Bright-orange);
}

.sedan button:hover{
    color: var(--Very-light-gray);
    background-color: var(--Bright-orange);
    border: 1px solid white;
}

.suv button{
    color: var(--Dark-cyan);
}

.suv button:hover{
    color:var(--Very-light-gray) ;
    background-color: var(--Dark-cyan);
    border: 1px solid white;
}
.luxury button{
    color: var(--Very-dark-cyan);
}

.luxury button:hover{
    color:var(--Very-light-gray) ;
    background-color: var(--Very-dark-cyan);
    border: 1px solid white;
}


@media(max-width:375px){

    body{
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        height: 100vh;
        width: 100%;
        max-width: 375px;

    }
    .container{
        width: 300px;
        height: 100%;
        display: grid;
        grid-template-rows: repeat(3 1fr);
        grid-template-columns: 1fr;
        border-radius: 10px
    };

    section{
        /*border: 1px solid salmon;*/
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
           
    }

    section.sedan {
        border-radius: 10px 10px 0 0;
    }
    
    section.luxury {
        border-radius: 0 0  10px 10px;
    }

    .option{
        height: 85%;
        width: 75%;
       /* border: 1px solid rebeccapurple;*/
        display: flex;
        flex-direction: column;
    
    }

    .icon img{
        height: 25px;
    }

    .icon{height: 10%;}

    h1{
        font-size: x-large;
    }

    .option p{
        margin-top: 5px;
        line-height: 15px;
        text-align: start;
    }

    .option button{
        margin-bottom: 10px;
    }
}