.card {
    height: 300px;
}

.card-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotate {
    transform: rotate(-25deg);
}

@media only screen and (max-width: 575px) {
    .card {
        height: 150px;
    }

    .rotate {
        transform: rotate(0);
    }
}

.dcard {
    box-shadow: 6px 6px 25px rgb(13, 110, 253);
}