.container {
    transform-style: preserve-3d;
}

.container .box {
    position: relative;
    width: 350px;
    height: 440px;
    margin: 20px;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}

.container .box .body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.9s ease;
}

.container .box .body .imgContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.container .box .body .imgContainer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box .body .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #333;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
}

.container .box:hover .body {
    transform: rotateY(180deg);
}

.container .box .body .content div {
    transform-style: preserve-3d;
    width: 350px;
    height: 300px;
    padding: 20px;
    background: linear-gradient(45deg, #b292e0, #991547);
    transform: translateZ(100px);
}

.juntaDirectiva__subtitulo {
    margin-top: 0.5rem;
}


.juntaDirectiva__parrafo {
    margin-bottom: 0;
}

.juntaDirectiva__parrafo a{
    text-decoration: none;
    color: #fff;
    font-size: 1.3rem;
}

.juntaDirectiva__parrafo a:hover{
    text-decoration: none;
    color: #333;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease;
}


.container .box .body .content div h3 {
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr 1fr;
       }
}

@media (max-width: 480px) {
    .container .box .body .content div {
        width: 330px;
        padding: 25px;
    }

}

@media (max-width: 320px) {
    .container .box .body .content div {
        width: 260px;
        padding: 25px;
    }

}