body
{
	margin: 0;
	padding: 0;
}

.bg
{
	position: relative;
	background: #00fdff url(Background2.png);
	height: 100vh;
	background-size: cover;
	background-position: 0 0;
	background-repeat: repeat-x;
	animation: animate 15s linear infinite;
}

.carro
{
	position: absolute;
	bottom: 20px;
	left: 20px;
}

@keyframes animate
{
	from {
		background-position: 0 0;
	}
	to {
		background-position: 100% 0;
	}
}
















