 
@keyframes breathing {
    0%, 100% {
        transform: scale(1);/* Normal size at the beginning and end */
    }
    50% {
        transform: scale(1.05);/* Slightly zoomed in at the midpoint */
    }
}

.animate-breathing {
    animation: breathing 15s ease-in-out infinite;

        /* Adjust these values to customize:
       15s = total duration
       1.05 = zoom intensity (1.05 = 5% increase)
       ease-in-out = animation smoothing
    */
    
    /* Ajusta estos valores para personalizar:
       15s = duración total
       1.05 = intensidad del zoom (1.05 = 5% de aumento)
       ease-in-out = suavizado de la animación
    */


}
 