.sliding-container {
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
}

.sliding-text {
    display: inline-block;
    padding-left: 100%;
    animation: slide-text 20s linear infinite;
}

/* Pause the animation on hover so users can read the message */
.sliding-container:hover .sliding-text {
    animation-play-state: paused;
}

@keyframes slide-text {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-100%, 0);
    }
}
