.news-bar {
    background: #0dcaf0;
    color: #021018;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.news-wrapper {
    display: inline-block;
    white-space: nowrap;
    animation: scrollNews 60s linear infinite;
}

.news-item {
    display: inline-block;
    margin-right: 40px;
}

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