*{
padding: 0;
margin: 0;    
}
main{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Lexend Deca', sans-serif;
}
.container{
    display: flex;
    padding: 2rem;
    max-width: 49rem;
    height:26.7rem;
    border-radius: 18px;
}
.cars{
   padding: 2.5rem 2rem;
}
.cars h2{
    margin: 1.5rem 0px;
    font-size: 2.5rem;
    font-family: 'Big Shoulders Display', sans-serif;
}
.one{
    background-color: hsl(31, 77%, 52%);
    border-radius: 12px 0px 0px 12px;
}
.two{
   background-color: hsl(184, 100%, 22%);
}
.three{
    background-color: hsl(179, 100%, 13%);
    border-radius: 0px 12px 12px 0px;
}
.cars p{
    font-size: 12px;
    color:  hsla(0, 0%, 100%, 0.75);
    line-height: 1.8;
    margin-bottom: 3.6rem;
}
.learn-more{
    text-align: center;
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 50px;
}
.one button{
    color:hsl(31, 77%, 52%);
}
.two button{
    color: hsl(184, 100%, 22%);
}
.three button{
    color:hsl(179, 100%, 13%);
}


@media (max-width:650px){
    .container{
        flex-direction: column;
    }
    .one{
        border-radius: 12px 12px 0px 0px;
    }
    .three{
        border-radius: 0px 0px 12px 12px;
    }
}