body {
    font-family: 'Gabarito', sans-serif;
    background-color: #f2f2f2;
}

body {
    font-family: 'Gabarito', sans-serif;
    background-color: #f2f2f2;
}

.flip-container {
    perspective: 1000px;
}

.flip-card {
    @apply w-full;
    width: 100%;
    height: 550px;
    transform-style: preserve-3d;
    transition: transform 0.6s;
    position: relative;
}

.flip-card-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.front {
    transform: rotateY(0deg);
}

.back {
    transform: rotateY(180deg);
}

.flip-card.flipped {
    transform: rotateY(180deg);
}

.image {
    width: 100%;
    height: auto;
}

.content {
    font-size: 1rem;
    text-align: center;
}