.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}


.click-elemento {
    cursor: pointer;
    transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.click-elemento:active {
    transform: scale(0.95);
    /* Reduce el tamaño del div ligeramente */
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    background-color: #d3d3d3d4;
    /* Añade sombra */
}