@keyframes moveBackground {
	0% { background-position: 50% 0px; }
	25% { background-position: 40% 0px; }
	75% { background-position: 60% 0px; }
	100% { background-position: 50% 0px; }
}

@keyframes cyberBackground {
	from { background-color: black; }
	to { background-color: #FFD300; }
}

html { 
	animation: moveBackground 8s linear 5s infinite;
	transition: 1s ease-in 1s;
}

html:hover { 
	background-color: #FFD300!important;
	transition: 1s ease-in-out;
}
