body {
	margin: 0;
	padding: 0;
	overflow-y: hidden;
	background-color: #243D41;
}
.bg {
	position: relative;
	background: url(../img/4background.png);
	height: 70vh;
	background-size: cover;
	background-position: 0 0;
	background-repeat: repeat-x;
	animation: animate 5s linear infinite;
}
.bg h1 {
	color:white; 
	font-size:50px; 
	padding:70px;
}

.car {
	position: absolute;
	bottom: 12px;
	left: 10px;
}
@keyframes animate {
	from {
		background-position: 0 0;
	}
	to {
		background-position: 100% 0;
	}
}