.marquee-container {
    height: 30px;
    overflow: hidden;
    line-height: 30px;
    background-color: rgb(0, 105, 105);
    color: #fff;
}

.marquee-container .marquee {
    top: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: no-wrap;
    animation: marquee 30s linear infinite;
}

.marquee-container .marquee2 {
    animation-delay: 15s;
}

.marquee-container b {
    padding-left: 10px;
}

@keyframes marquee {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}