* {
    box-sizing: border-box;
}

.column{
    width: 25%;
    float: left;
    padding: 0px 10px;
}

.row::after{
    content: "";
    display: table;
    clear: both;
}

@media screen and(max-width:600px){
    .column{
        width: 100%;
        display: block;
        margin-bottom: 20px;
    }
}

.card{
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    max-width: 300px;
    margin: auto;
    background-color: white;
    text-align: center;
    border-radius: 40px;
    padding-bottom: 15px;
    padding-top: 15px;
}

.card-img-top{
   
    position: relative;
    overflow: hidden;
    border-radius:50px ;
    padding-top: 0.5px;
    padding-left: 0.5px;

}

.btn{
    border: none;
    padding: 8px;
    display: inline-block;
    color: white;
    background-color:  #FFA5AF;
    cursor: pointer;
    width: 70%;
    border-radius: 20px;
    font-size: 18px;
    text-align: center;

}

.btn btn-primary:hover{
    background: #FFA5AF;
  color: #F5F5F5;
}

