.marquee {
    margin: 5px 0px;
    width: auto;
    line-height: 30px;
    color: Black;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear 0s infinite;
    margin-bottom: 0;
    margin-top: 5px;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
