#notlogo-demo .demo-display svg path {
    animation: bouncy-boi 1.5s ease-in-out infinite;

    &:nth-child(1) {
        animation-delay: 0s;    
        fill: rgb(0, 153, 255);
    }

    &:nth-child(2) {
        animation-delay: 0.1s;
        fill: rgb(0, 133, 221);
    }

    &:nth-child(3) {
        animation-delay: 0.2s;
        fill: rgb(0, 112, 187);
    }

    &:nth-child(4) {
        animation-delay: 0.3s;
        fill: rgb(0, 93, 155);
    }

    &:nth-child(5) {
        animation-delay: 0.4s;
        fill: rgb(0, 75, 124);
    }

    &:nth-child(6) {
        animation-delay: 0.5s;
        fill: rgb(0, 51, 85);
    }

    &:nth-child(7) {
        animation-delay: 0.6s;
        fill: rgb(0, 35, 58);
    }
}

@keyframes bouncy-boi {
    0% {
        transform: translateY(0);
    }

    10% {
        transform: translateY(-40px);
    }

    20% {
        transform: translateY(0);
    }

    28% {
        transform: translateY(-8px);
    }

    36% {
        transform: translateY(0);
    }
}