.marquee-container {
   background-color: #ffd129;
    color: #fff; /* White text */
    padding: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    font-family: Nunito, sans-serif;
    }
    .marquee-text {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 19s linear infinite;
    }
    @keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
    }