
html, body { min-height: 100%; margin: 0; padding: 0; color: #fff;  }

body {
	position: relative; font-family: Arial, sans-serif; 
	background: linear-gradient(45deg, #601a70, #90244e, #135d78, #168d71, #189c7d);
	background-size: 400% 400%;
	animation: Gradient 10s ease infinite;
}

#logo { height: 100%; width: 100%; background: transparent url(../img/logo.png) center center no-repeat; background-size: 35%; }
#attr { margin-top: 1em; font-size: .8em; opacity: 0.75; }


@-webkit-keyframes Gradient {
	0% { background-position: 0% 50%}
	50% { background-position: 100% 50% }
	100% { background-position: 0% 50% }
}

@-moz-keyframes Gradient {
	0% { background-position: 0% 50%}
	50% { background-position: 100% 50%}
	100% { background-position: 0% 50% }
}


@keyframes Gradient {
	0% {background-position: 0% 50%}
	50% {background-position: 100% 50%}
	100% {background-position: 0% 50%}
}

