
.discord-wrapper{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.2;
    filter: blur(8px);
}

.discord-spin {
    display: flex;
    position: relative;
    justify-items: center;
    align-items: center;
    gap: 1rem;
    height: 55px;
    width: 200px;
    overflow: hidden;
    scale: 2.5;
}

.discord-spin-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: 200px;
    position: relative;
    align-items: center;
}

.carousel {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    position: absolute;
    width: 100%;
    transform-origin: center;
    animation-delay: 2s;
}

.discord-spin .discord-spin-wrapper:nth-child(3) {
    justify-content: flex-start;
    justify-items: flex-start;
    animation: scroll-up 4s infinite ease-in-out;
    animation-delay: 3s;
}

.discord-spin .discord-spin-wrapper:nth-child(2) {
    justify-content: flex-end;
    justify-items: flex-end;
    animation: scroll-down 4s infinite ease-in-out;
    animation-delay: 3s;
}

.discord-spin .discord-spin-wrapper:nth-child(1) {
    justify-content: flex-end;
    justify-items: flex-end;
    animation: scroll-down 3s infinite ease-in-out;
    animation-delay: 3s;
}

.iocn-1 {
    width: 49px;
    height: 35px;
    margin: 0.8rem 4px;
    font-size: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation-delay: 2s;
    color: #fff3a2;
}

.iocn-2 {
    display: flex;
    width: 49px;
    height: 35px;
    margin: 0.8rem 4px;
    font-size: 44px;
    position: relative;
    align-items: center;
    justify-content: center;
    animation: rotation 3s infinite ease-in-out;
    animation-delay: 1s;
    color: #ffe68d;
}

.discord-spin:hover {
    animation: none;
}

.iocn-3 {
    display: flex;
    width: 49px;
    height: 35px;
    margin: 0.8rem 4px;
    font-size: 44px;
    justify-content: center;
    align-items: center;
    animation-delay: 5s;
    color: #ffd676;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
        filter: blur(0);
    }

    30% {
        transform: translateY(-150%);
        filter: blur(10px);
    }

    60% {
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes scroll-down {
    0% {
        transform: translateY(0);
        filter: blur(0);
    }

    30% {
        transform: translateY(150%);
        filter: blur(10px);
    }

    60% {
        transform: translateY(0);
        filter: blur(0px);
    }
}

@keyframes rotation {

    20%,
    100% {
        transform: rotate(360deg);
    }
}

@keyframes blink {
    0% {
        height: 0;
    }

    20% {
        height: 12px;
    }

    100% {
        height: 12px;
    }
}
