.text-scroller-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.text-scroller-container {
    display: flex;
    white-space: nowrap;
    animation: scroll 20s linear infinite;
}

.text-scroller-item {
    display: inline-block;
    padding: 10px 20px;
    margin-right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}