.flip-card {
    background-color: transparent;
    width: 190px;
    height: 254px;
    perspective: 1000px;
}

/* @media (max-width: 1400px) {
    .flip-card {
        width: 190px; } }

@media (max-width: 1200px) {
    .flip-card {
        width: 190px; } }

@media (max-width: 992px) {
    .flip-card {
        width: 190px; } }
        
@media (max-width: 768px) {
    .flip-card {
        width: 190px; } } */

@media (max-width: 576px) {
    .flip-card {
        width: 100%;
        height: 244px;
    }
}

.title {
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 0;
    background-image: linear-gradient(#f000, black 90%);
    line-height: 3.75;
    border-radius: 0 0 1rem 1rem;
    justify-content: end;
    display: flex;
    flex-direction: column;
    height: 6rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: end;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* border: 1px solid coral; */
    border-radius: 1rem;
}

.flip-card-front {
background: linear-gradient(
    120deg,
    bisque 60%,
    rgb(255, 231, 222) 88%,
    rgb(255, 211, 195) 40%,
    rgba(255, 127, 80, 0.603) 48%
);
color: white;
}

.flip-card-back {
    background: #212529;
    color: white;
    transform: rotateY(180deg);
}

.flip-style {
    background-position: center; 
    background-size: cover; 
    box-shadow: -3px 5px 15px rgba(0, 0, 0, .4);
}