body {
	width: 100wh;
	height: 100vh;
	padding: 0;
	margin: 0;
	color: #fff;
	background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
	background-size: 800% 800%;
	-webkit-animation: Gradient 25s ease infinite;
	-moz-animation: Gradient 25s ease infinite;
	animation: Gradient 25s ease infinite;
	font-family: 'Open Sans';
	font-weight: 700;
}


.content {
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	text-align: center;
}

.content h1 {
	font-size: 500%;
	margin: 0;
}

.content h2 {
	font-size: 300%;
	margin: 0;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	margin: 0;
	padding: 0;
}

.footer p {
	text-align: right;
	font-size: 100%;
	margin: 1.5em;
}

@-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%
	}
}
