.marquee { 	width: 100%; 	white-space: nowrap; 	overflow: hidden; 	box-sizing: border-box; 	color: #FFFFFF; 	font-weight: normal; 	float: left; 	top: -40px; 	position: relative; 	text-shadow: 5px 5px 10px #000000; 	height: 40px; 	font-family: Bounded-Medium; 	font-size: 24px; 	padding-top: 8px; }
.marquee span { 	display: inline-block; 	padding-left: 100%; 	animation: marquee 15s linear infinite; }
.marquee span:hover {  animation-play-state: paused }
@keyframes marquee {  0%   { transform: translate(0, 0); }  100% { transform: translate(-100%, 0); } } 
