body{
    font-family: 'Lexend Deca', sans-serif;
    background-color: hsl(0, 0%, 95%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    
}

.box{
    width: 900px;
    display: flex;
    
}

.btn1{
   background-color: hsl(0, 0%, 95%);
   border-radius: 50px;
   padding: 15px;
   border: none;
   outline: none;
   width: 120px;
   color:  hsl(31, 77%, 52%);
}

.btn2{
    background-color: hsl(0, 0%, 95%);
    border-radius: 50px;
    padding: 15px;
    border: none;
    outline: none;
    width: 120px;
    color:   hsl(184, 100%, 22%);
 }

 .btn3{
    background-color: hsl(0, 0%, 95%);
    border-radius: 50px;
    padding: 15px;
    border: none;
    outline: none;
    width: 120px;
    color:  hsl(179, 100%, 13%);
 }

.btn1:hover{
    cursor: pointer;
    background-color: transparent;
    border: 3px solid white;
    color: white;transition: all 1s;
}

.btn2:hover{
    cursor: pointer;
    background-color: transparent;
    border: 3px solid white;
    color: white;transition: all 1s;
}

.btn3:hover{
    cursor: pointer;
    background-color: transparent;
    border: 3px solid white;
    color: white;transition: all 1s;
}


.sedan{
    background-color:  hsl(31, 77%, 52%);
    padding: 40px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    img{
        margin: 20px;
    }
    
    .t1{
        color: hsl(0, 0%, 95%);
    }

    .d1{
        color: hsla(0, 0%, 100%, 0.75);
        margin-top: 40px;
        margin-bottom: 60px;
    }
}

.suv{
    background-color:  hsl(184, 100%, 22%);
    padding: 40px;
    img{
        margin: 20px;
    }
    
    .t2{
        color: hsl(0, 0%, 95%);
    }

    .d2{
        color: hsla(0, 0%, 100%, 0.75);
        margin-top: 40px;
        margin-bottom: 60px;
    }
}

.luxury{
    background-color:  hsl(179, 100%, 13%);
    padding: 40px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    img{
        margin: 20px;
    }
    
    .t3{
        color: hsl(0, 0%, 95%);
    }

    .d3{
        color: hsla(0, 0%, 100%, 0.75);
        margin-top: 40px;
        margin-bottom: 60px;
    } 
}