.scroller {
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0rem;
    opacity: 1;
}

.scroller.fill .text-scrolling {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.text-scrolling {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4rem;
    width: max-content;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
    white-space: nowrap;
    gap: 0rem;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 0.5px #fff;
    user-select: none;
    animation: scroll 85s linear infinite;
    animation-direction: normal;
    pointer-events: none;
}

.text-scrolling.reverse {
    animation: scrollr 85s linear infinite;
}

.text-scrolling span {
    user-select: none;
    pointer-events: none;
}

@keyframes scroll {
    0% {
        transform: translate(-0%, 0);
    }

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

@keyframes scrollr {
    0% {
        transform: translate(-50%, 0);
    }

    100% {
        transform: translate(-0%, 0);
    }
}