.effect-cont {
    height: 150%;
    flex-direction: column;
    /* transform: rotate(-5.7deg) translateY(-20vh); */
    /* filter: blur(1.5px); */
    /* border: 2px solid black; */
}

.scrl-text-row {
    height: 15vh;
    display: flex;
}

.anim-scrl-row {
    animation: scroll 60s linear infinite;
}

.anim-scrl-row-reverse {
    animation: scroll-reverse 60s linear infinite;
}

.scrl-text-cell {
    margin-right: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 4px;

    /* border: 1px solid black; */

    font-size: 4rem;
    color: #fafafa;
    user-select: none;
    cursor: default;
    white-space: nowrap;

    font-weight: 700;

    transition: all 0.5s ease-in-out;
    box-sizing: border-box;
}

.scrl-text-highlight-green:hover {
    color: #dfd;
}

.scrl-text-highlight-red:hover {
    color: #fdd;
}

.scrl-text-highlight-blue:hover {
    color: #ddf;
}

.scrl-text-highlight-pink:hover {
    color: #fdf;
}

.scrl-text-highlight-teal:hover {
    color: #dff;
}

.scrl-text-highlight-yellow:hover {
    color: #ffd;
}

@keyframes scroll {
    0% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    50% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
