.image-container{
    max-width: 300px;
    height: 170px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}
.curser-pointer {
    cursor: pointer;
}
.image-container > img{
    width: 100%;
    height: auto;
}
.card-box{
    position: relative;
}
.content:after{
    content: '';
    position: absolute;
    height: 4px;
    border-radius: 2px;
    width: 91%;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    background: #F75858;
    box-shadow: 0px 2px 4px #ccc;
}
.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;
}
.prize-item > img{
    max-width: 300px;
    height: auto;
    margin: 0 auto;
}
.card-box > p{
    font-size: 18px;
    color: rgba(0,0,0,0.75);
    margin-bottom: .5rem!important;
}
.read{
    font-size: 12px;
    padding: 5px 0;
    transition: .1s;
}
.read:hover{
    font-weight: bold;
}
@media only screen and (max-width: 768px){
    h2{
        font-size: 26px;
        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;
    }
}
