/* yeah yeah I know I should use less or scss*/

#bigfuckingtext span:nth-child(2) {
    animation-delay: 0.2s;
}

#bigfuckingtext span:nth-child(3) {
    animation-delay: 0.4s;
}

#bigfuckingtext span:nth-child(4) {
    animation-delay: 0.6s;
}

#bigfuckingtext span:nth-child(5) {
    animation-delay: 0.8s;
}

#bigfuckingtext span:nth-child(6) {
    animation-delay: 1.0s;
}

#bigfuckingtext span:nth-child(7) {
    animation-delay: 1.2s;
}

#bigfuckingtext span:nth-child(8) {
    animation-delay: 1.4s;
}

#bigfuckingtext span:nth-child(9) {
    animation-delay: 1.6s;
}

#bigfuckingtext span:nth-child(10) {
    animation-delay: 1.8s;
}

#bigfuckingtext span:nth-child(11) {
    animation-delay: 2.0s;
}

#bigfuckingtext span:nth-child(12) {
    animation-delay: 2.2s;
}

#bigfuckingtext span:nth-child(13) {
    animation-delay: 2.4s;
}

#bigfuckingtext span:nth-child(14) {
    animation-delay: 2.6s;
}

#bigfuckingtext span:nth-child(15) {
    animation-delay: 2.8s;
}

#bigfuckingtext span:nth-child(16) {
    animation-delay: 3.0s;
}

#bigfuckingtext span:nth-child(17) {
    animation-delay: 3.2s;
}

#bigfuckingtext span:nth-child(18) {
    animation-delay: 3.4s;
}

#bigfuckingtext span:nth-child(19) {
    animation-delay: 3.6s;
}

#bigfuckingtext span:nth-child(20) {
    animation-delay: 3.8s;
}

#bigfuckingtext span:nth-child(21) {
    animation-delay: 4.0s;
}

#bigfuckingtext span:nth-child(22) {
    animation-delay: 4.2s;
}

#bigfuckingtext span:nth-child(23) {
    animation-delay: 4.4s;
}

#bigfuckingtext span:nth-child(24) {
    animation-delay: 4.6s;
}

#bigfuckingtext span:nth-child(25) {
    animation-delay: 4.8s;
}

#bigfuckingtext span:nth-child(26) {
    animation-delay: 5.0s;
}

#bigfuckingtext span:nth-child(27) {
    animation-delay: 5.2s;
}

#bigfuckingtext span:nth-child(28) {
    animation-delay: 5.4s;
}

#bigfuckingtext span:nth-child(29) {
    animation-delay: 5.6s;
}

#bigfuckingtext span:nth-child(30) {
    animation-delay: 5.8s;
}

#bigfuckingtext span:nth-child(31) {
    animation-delay: 6.0s;
}

#bigfuckingtext span:nth-child(32) {
    animation-delay: 6.2s;
}

#bigfuckingtext span:nth-child(33) {
    animation-delay: 6.4s;
}

#bigfuckingtext span:nth-child(34) {
    animation-delay: 6.6s;
}

#bigfuckingtext span:nth-child(35) {
    animation-delay: 6.8s;
}

#bigfuckingtext span:nth-child(36) {
    animation-delay: 7.0s;
}

#bigfuckingtext span:nth-child(37) {
    animation-delay: 7.2s;
}

#bigfuckingtext span:nth-child(38) {
    animation-delay: 7.4s;
}

@keyframes rainbow {
    0% {
        color: plum;
    }
    10% {
        color: teal;
    }
    20% {
        color: DeepPink;
    }
    30% {
        color: coral;
    }
    40% {
        color: yellow;
    }
    50% {
        color: deepskyblue;
    }
    60% {
        color: green;
    }
    70% {
        color: cyan;
    }
    80% {
        color: peachpuff;
    }
    90% {
        color: DodgerBlue;
    }
    100% {
        color: plum;
    }
}

@keyframes wave {
    50% {
        transform: translate(0, -40%) scale(1.75, 1.75) rotate(0turn);
    }
}

@keyframes slide-in {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0%);
    }
}

@keyframes slide-out {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-100%);
    }
}


#lastPlayingPanel.animation-in {
    animation: slide-in 1000ms;
}

#lastPlayingPanel.animation-out {
    animation: slide-out 1000ms;
}