.marquee {
width: 100%;
margin:10px auto;
padding:2px;
/* border:1px solid; */
white-space: nowrap;
overflow: hidden;
}
.marquee p {
display:block;
margin-left:100%;
width:100%;
font-size: 1em;
text-align:center;
animation: marquee 45s linear infinite;
-webkit-animation: marquee 45s linear infinite;
}

@-webkit-keyframes marquee {
0% {  transform: translate(0%, 0);}
100% { margin-left:-100%;transform: translate(-100%, 0);}
}

@keyframes marquee {
0% { transform: translate(0, 0);}
100% { margin-left:-100%; transform: translate(-100%, 0); }
}