@keyframes important {
	0% { opacity: 1; }
	100% { opacity: 0; }
}

@keyframes bganim {
	0% { background-position: 0 0; }
	100% { background-position: 420px 169px; }
}

body {
	background-image: url('bg.png');
	background-color: black;
	color: white;
	font-size: 200%;
	text-align: center;
	animation: bganim 16s linear infinite;
}

h1 {
	color: #f01;
}

.important {
	color: #f88;
	animation: important 1s linear infinite alternate;
}
