.body {
	background: red;
	-webkit-animation: mymove 5s infinite;
	animation: mymove 5s infinite;
	}
@-webkit-keyframes mymove {
	from {background-color: red;}
	to {background-color: blue;}
	}
@keyframes mymove {
	from {background-color: red;}
	to {background-color: blue;}
	}
h1 {
	font-size: 5em;
	margin-left: 25px;
	}

