.marquee-container{
    width: 100%;
    overflow: hidden;
    background: black;
    color: white;
    padding: 10px 0;
}

.marquee-content{
    display: flex;
    gap: 100px;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

.marquee-content span{
    font-size: 18px;
}

@keyframes marquee{
    0%{
        transform: translateX(100%);
    }
    100%{
        transform: translateX(-100%);
    }
}