body {
  background-color: #0000FF;
}
h1 {
  color: #00FFFF;
  font-size: 40;
  font-family: papyrus;
}
load {
	animation-name: turn;
	animation-duration: 1s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	transform-origin: 50% 50%;
	position: center;
	left: 0;
    line-height: 200px;
    margin-top: -100px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 100%;
	
}
img {
    width: 10%;
    height: 10%;
}
@keyframes turn {
	0% {rotate: 0deg;}
	100% {rotate: 360deg;}
}
