
.news-container {
    overflow: hidden;
    background-color:rgb(242,205,42);
    margin-top:5px;
    height:40px;
    padding-top:5px;

}
.news {
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    
}
.imgmarq
{
    height:28px;
    width:28px;
}
.newsItem {
    display: inline-block;
    margin-right:8px; /* Adjust as needed for spacing between items */
    margin-left:8px;
    font-size:25px;
    color:rgb(132,26,5);
    font-family: arial, "Trebuchet MS", sans-serif;
 
}
@keyframes marquee {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}