body {
	background-image: url('http://i.imgur.com/IzvGeZY.jpg');
}

	
h1 {
  animation:glow 10s ease-in-out infinite;
  color: #FF0000;
  display: block;
  width: 100%;
  padding: 40px;
  line-height: 1.5;
  font:900 8em 'Concert One', sans-serif;
  text-transform: uppercase;
  position: absolute;
  
}
@keyframes rotate {
  0%,100%{ transform:rotate3d(0,1,0,360deg); }
  25%{ transform:rotate3d(-,0,0,360deg); }
  50%{ transform:rotate3d(-0,-1,0,360deg); }
  75%{ transform:rotate3d(0,-1,0,360deg); }
}
@keyframes glow {
  0%,100%{ text-shadow:0 0 30px #000000; }
  25%{ text-shadow:0 0 30px #000000; }
  50%{ text-shadow:0 0 30px #000000; }
  75%{ text-shadow:0 0 30px #000000; }
}
figure {
  animation: rotate 5s ease-in-out infinite;
  transform-origin:center center;
  transform-style:preserve-3d;
}
h2 {
	color: #000080;
	font-family: Papyrus;
	font-size: 90px;
	text-shadow: 3px 2px #FF0000;

}
h1:nth-child(2){ transform:translateZ(5px); }
h1:nth-child(3){ transform:translateZ(10px);}
h1:nth-child(4){ transform:translateZ(15px); }
h1:nth-child(5){ transform:translateZ(20px); }
h1:nth-child(6){ transform:translateZ(25px); }
h1:nth-child(7){ transform:translateZ(30px); }
h1:nth-child(8){ transform:translateZ(35px); }
h1:nth-child(9){ transform:translateZ(40px); }
h1:nth-child(10){ transform:translateZ(45px); }



