/* https://codepen.io/KevinBonkewitzz/pen/xOzPGr */
body {
	margin: 0px;
	overflow-x: hidden;
}
.container {
	width: 100vw;
	height: 100vh;
	text-align: center;
	background-size: auto 110%;
	background-image: url(images/sports-silhouettes.svg?cache=0);
	background-position: center;
	background-repeat: repeat-x;
	animation: backgroundScroll 750000s linear infinite; /* Adjust timing here according to speed required */
	will-change: transform;
 translate3d(0);
	transform: translate(0px, 0);
	box-shadow: 0 0 0 #000;
	-ms-transform: translate3d(0, 0%, 0);
	-o-transform: translate3d(0, 0%, 0);
	transform: translate3d(0, 0%, 0);
}
 @-webkit-keyframes backgroundScroll { from {
background-position: 0 50%;
}
to { background-position: -99999999px 0; }
}
 @keyframes backgroundScroll { from {
background-position: 0 50%;
}
to { background-position: -99999999px 0; }
}
