.image-container{
    max-width: 200px;
    min-height: 150px;
    max-height: 150px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.line-bottom:after{
    content: '';
    position: absolute;
    height: 4px;
    border-radius: 2px;
    width: 100%;
    left: 0;
    bottom: 0;
    background: #891EAE;
    box-shadow: 0px 2px 4px #ccc;
}
.image-container > img{
    width: 100%;
    height: auto;
}
.bg-gradient{
    background: linear-gradient(90.15deg, #E05362 0.12%, #9F56EF 99.85%);
}
.button{
    background: #FF6363;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 100px;
    padding: .5rem 2rem !important;
}
.dark{
    color: rgba(0,0,0, 0.87);
}
a:hover{
    text-decoration: none;
}
.outline{
    min-width: 100px;
    background: none;
    border-radius: 100px;
    padding: .5rem 2rem !important;
}
@media only screen and (max-width: 768px){
    h2{
        font-size: 2rem!important;
        width: 100%;
        text-align: center;
    }
    .bg-gradient{
        padding-top: 1.5rem!important;
        padding-bottom: 1.5rem!important;
    }
    .my-4{
        margin-top : 1rem!important;
        margin-bottom: 1rem!important;
    }
    .actions{
        width: 100%;
    }
    .image-container{
        max-width: 100%;
        max-height: 200px;
        margin-bottom: 1rem;
    }
    .outline{
        margin: 0 auto!important;
    }
    .button{
        margin: 0 auto!important;
    }
}

