/* Animación de respiración para textos */
@keyframes breathe {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 1;
    }
}

/* Aplicar animación a elementos con texto */
.loading,
.control-btn {
    animation: breathe 3s ease-in-out infinite;
    font-family: 'Junicode', serif;
}

 