body {
}
.scrolling {
	position: relative;
	width: 100%;
	height: 100px;
	overflow: hidden;
	margin-top: 50px;
}
.scrolling h2 {
	position: absolute;
	width: 180%;
	height: 100%;
	margin: 0;
	padding: 0;
	font-size: 2em;
	text-align: center;
	line-height: 100px;
	color: #ggg;
	transform: translateX(100%);
	animation: scrolling 30s linear infinite;
}
@keyframes scrolling {
	0% {
		transform: translateX(40%);
	}
	100% {
		transform: translateX(-85%);
	}
}
