﻿@keyframes breathing {
    0%, 100% {
        fill: #000000;
    }

    50% {
        fill: #F5F5F5;
    }
}

/* Apply the breathing effect to the text */
.breathing-text {
    animation: breathing 3s ease-in-out infinite;
}
