*{
    padding:0;
    margin: 0;
    box-sizing: border-box;
}
.full-container{
    width:100vw;
    height: 100vh;
    background-color: aqua;
    display: flex;
   
    align-items: center;
    justify-content: center;
}
.full-container .sedans{
    width:250px;
    height:400px;
    background-color: #E28525;
    padding: 30px;
    border-radius: 20px 0 0 20px;
}
.full-container .sedans .title{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-top: 30px;
}
.full-container .sedans .para{
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.full-container .sedans .learn-more{
    width:150px;
    background-color: white;
    height:40px;
    margin-top: 50px;
    border-radius: 30px;
    text-align: center;padding-top: 10px;
    color: #E28525;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;



}
/*suvs*/
.full-container .suv{
    width:250px;
    height:400px;
    background-color: #016972;
    padding: 30px;
}
.full-container .suv .title{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-top: 30px;
}
.full-container .suv .para{
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.full-container .suv .learn-more{
    width:150px;
    background-color: white;
    height:40px;
    margin-top: 68px;
    border-radius: 30px;
    text-align: center;padding-top: 10px;
    color: #016972;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;



}
/*luxury*/

/*suvs*/
.full-container .luxury{
    width:250px;
    height:400px;
    background-color:#00403F;
    padding: 30px;
    border-radius: 0 20px 20px 0;
}
.full-container .luxury .title{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 30px;
    font-weight: bold;
    color: white;
    margin-top: 30px;
}
.full-container .luxury .para{
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 20px;
}
.full-container .luxury .learn-more{
    width:150px;
    background-color: white;
    height:40px;
    margin-top: 50px;
    border-radius: 30px;
    text-align: center;padding-top: 10px;
    color: #00403F;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;



}

@media(max-width:400px){
    .full-container{
        width:100vw;
        height: 100vh;
        background-color: aqua;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-top: 300px;
    }
    .full-container .sedans{
        width:250px;
        height:400px;
        background-color: #E28525;
        padding: 30px;
        border-radius: 20px 20px 0 0;
    }
    .full-container .luxury{
        width:250px;
        height:400px;
        background-color: #00403F;
        padding: 30px;
        border-radius: 0 0 20px 20px;
    }
    

}