.marquee {
    /* width: 450px; */
	/* marquee-style: scroll; */
	width: 100%;
	line-height: 10px;
	font-size: 20px;
	font-weight: 800;
	background-color: #80F9EC;
	color: blue;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
}
.marquee p {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
	animation: marquee 25s linear infinite;
}
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}
