@-webkit-keyframes poopybackground
{
	0%		{background-color: red;}
	100%	{background-color: lime;}
}

@keyframes poopybackground
{
	0%		{background-color: red;}
	100%	{background-color: lime;}
}

@-webkit-keyframes marqueez
{
	0%		{text-indent:  100%;}
	100%	{text-indent:  -100%;}
}

@keyframes marqueez
{
	0%		{text-indent:  100%;}
	100%	{text-indent:  -100%;}
}

h1
{
	overflow: hidden;
	white-space: nowrap;
	font-size: 96;
	-webkit-animation: marqueez 2s linear 0s infinite alternate;
	animation: marqueez 2s linear 0s infinite alternate;
}

body
{
	-webkit-animation: poopybackground 0.5s cubic-bezier(1,0,0,1) 0s infinite alternate;
	animation: poopybackground 0.5s cubic-bezier(1,0,0,1) 0s infinite alternate;
	font-family: "Comic Sans MS", cursive, sans-serif;
}

img
{
	position: fixed;
}