/* Container styles */
.scrolling-text-container {
    background-color: #090909;
    border-radius: 4px;
    overflow: hidden;
}

/* Inner container styles */
.scrolling-text-inner {
    display: flex;
    white-space: nowrap;
    font-size: 50px;
    font-weight: 600;
    padding: 8px 0;
    color: #198514;
    font-family: "Bluescreen", serif;
}

/* Text styles */
.scrolling-text {
    display: flex;
}

.scrolling-text-item {
    padding: 0 200px;
}

/* Apply the animation to the text items */
.scrolling-text-inner>div {
    animation: scroll-right 50s linear infinite;
}

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

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