.news-marquee {
    background-color: #f5f5f5;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
  }
  
  @keyframes marquee {
    from {
      transform: translateX(350%);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  
  .news-text {
    display: inline-block;
    font-size: 1rem;
    font-weight: bold;
    position: absolute;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
  }