.marquee {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	box-sizing: border-box;
	font-family: "Century Gothic";
	font-size: 24px;
	color: #FFFFFF;
	font-weight: normal;
	float: left;
	top: -38px;
	position: relative;
}

.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); }
} 
