.marquee {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	white-space: nowrap;
}

.marquee-content {
	display: inline-block;
	margin-top: 5px;
	animation: marquee 400s linear infinite;
	font-size: 3vmin;
}

.marquee-content > div,
.marquee-content > div > div {
	display: inline-block;
	margin-right: 20px;
}

.marquee-content:hover {
	animation-play-state: paused
}

@keyframes marquee {
	0% {
		transform: translateX(0)
	}
	100% {
		transform: translateX(-100%)
	}
}
