.container{
    width: 100%;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: 90px;
    flex-direction: row-reverse;
}
.choose-btn{
    all:unset;     
    background-color: #4F4844;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    padding:80 50 50 50; 
    height: 250px;
    width:200px;  
    border-radius: 45px;
    font-size: 25px;
    font-weight: 100;
    -webkit-box-shadow: 4px 6px 7px 0px rgba(21, 21, 21, 0.75);
    -moz-box-shadow: 4px 6px 7px 0px rgba(21, 21, 21,0.75);
    box-shadow: 4px 6px 7px 0px rgba(21, 21, 21,0.75);
    transition: transform 300ms;
}
.choose-btn:hover{
    transform: scale(1.05);
}
.choose-btn img{
    margin-bottom: 50px;
}
