/* #particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00eaff;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 20s linear infinite;
} */

.animate-menu-breathe {
    animation: menu-breathe 2.5s ease-in-out infinite;
}

@keyframes float{
from{
transform:translateY(0);
}
to{
transform:translateY(-120vh);
}
}

@keyframes menu-breathe {
    0% {
        transform: translateX(-50%) scaleX(0.95);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) scaleX(1.05);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scaleX(0.95);
        opacity: 0.8;
    }
}
