/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

input:focus {
	outline: 0;
}

/* My own styling */


body {
	background-color: #ADD6EB;
	background-image: -moz-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0), rgba(32, 32, 32, 0.9) 90%);
	background-image: -webkit-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0), rgba(32, 32, 32, 0.9) 90%);
	background-image: -o-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0), rgba(32, 32, 32, 0.9) 90%);
	background-image: -ms-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0), rgba(32, 32, 32, 0.9) 90%);
	background-image: radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0), rgba(32, 32, 32, 0.9) 90%);
	background-attachment: fixed;
	overflow: hidden;
	max-height: 768px;
}


.content {
	-webkit-transition: -webkit-transform 2000ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	   -moz-transition: -moz-transform    2000ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	    -ms-transition: -ms-transform     2000ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	     -o-transition: -o-transform      2000ms cubic-bezier(1.000, 0.000, 0.000, 1.000); 
	        transition: -transform        2000ms cubic-bezier(1.000, 0.000, 0.000, 1.000);
	-webkit-transform-style: preserve-3d;		
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;	
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	height: 600px;
	padding: 0;
	position: relative;
	width: 800px;
}

@-webkit-keyframes tilt {  
	from {  
	  -webkit-transform: rotateX(-5deg) rotateY(10deg) translateY(30px) translateX(-10px);
	}  
	  
	to {  
	  -webkit-transform: rotateX(-15deg) rotateY(-20deg) translateY(30px) translateX(-10px); 
	}  
  }
  @-moz-keyframes tilt {  
	from {  
	  -webkit-transform: rotateX(-5deg) rotateY(10deg) translateY(30px) translateX(-10px);
	}  
	  
	to {  
	  -webkit-transform: rotateX(-15deg) rotateY(-20deg) translateY(30px) translateX(-10px); 
	}  
  }
  @-o-keyframes tilt {  
	from {  
	  -webkit-transform: rotateX(-5deg) rotateY(10deg) translateY(30px) translateX(-10px);
	}  
	  
	to {  
	  -webkit-transform: rotateX(-15deg) rotateY(-20deg) translateY(30px) translateX(-10px); 
	}  
  }
  @-ms-keyframes tilt {  
	from {  
	  -webkit-transform: rotateX(-5deg) rotateY(10deg) translateY(30px) translateX(-10px);
	}  
	  
	to {  
	  -webkit-transform: rotateX(-15deg) rotateY(-20deg) translateY(30px) translateX(-10px); 
	}  
  }
  @keyframes tilt {  
	from {  
	  -webkit-transform: rotateX(-5deg) rotateY(10deg) translateY(30px) translateX(-10px);
	}  
	  
	to {  
	  -webkit-transform: rotateX(-15deg) rotateY(-20deg) translateY(30px) translateX(-10px); 
	}  
  }
  
  @-webkit-keyframes rainbow {  
	  from {
		  color: hsl(0, 100%, 90%);
	  }
  
	  16% {
		  color: hsl(60, 100%, 90%);
	  }
	  
	  33% {
		  color: hsl(120, 100%, 90%);
	  }
	  
	  50% {
		  color: hsl(180, 100%, 90%);
	  }
	  
	  66% {
		  color: hsl(240, 100%, 90%);
	  }
	  
	  83% {
		  color: hsl(300, 100%, 90%);
	  }
	  
	  to {
		  color: hsl(360, 100%, 90%);
	  }
  }
  @-moz-keyframes rainbow {  
	  from {
		  color: hsl(0, 100%, 90%);
	  }
  
	  16% {
		  color: hsl(60, 100%, 90%);
	  }
	  
	  33% {
		  color: hsl(120, 100%, 90%);
	  }
	  
	  50% {
		  color: hsl(180, 100%, 90%);
	  }
	  
	  66% {
		  color: hsl(240, 100%, 90%);
	  }
	  
	  83% {
		  color: hsl(300, 100%, 90%);
	  }
	  
	  to {
		  color: hsl(360, 100%, 90%);
	  }
  }
  @-o-keyframes rainbow {  
	  from {
		  color: hsl(0, 100%, 90%);
	  }
  
	  16% {
		  color: hsl(60, 100%, 90%);
	  }
	  
	  33% {
		  color: hsl(120, 100%, 90%);
	  }
	  
	  50% {
		  color: hsl(180, 100%, 90%);
	  }
	  
	  66% {
		  color: hsl(240, 100%, 90%);
	  }
	  
	  83% {
		  color: hsl(300, 100%, 90%);
	  }
	  
	  to {
		  color: hsl(360, 100%, 90%);
	  }
  }
  @-ms-keyframes rainbow {  
	  from {
		  color: hsl(0, 100%, 90%);
	  }
  
	  16% {
		  color: hsl(60, 100%, 90%);
	  }
	  
	  33% {
		  color: hsl(120, 100%, 90%);
	  }
	  
	  50% {
		  color: hsl(180, 100%, 90%);
	  }
	  
	  66% {
		  color: hsl(240, 100%, 90%);
	  }
	  
	  83% {
		  color: hsl(300, 100%, 90%);
	  }
	  
	  to {
		  color: hsl(360, 100%, 90%);
	  }
  }
  @keyframes rainbow {  
	  from {
		  color: hsl(0, 100%, 90%);
	  }
  
	  16% {
		  color: hsl(60, 100%, 90%);
	  }
	  
	  33% {
		  color: hsl(120, 100%, 90%);
	  }
	  
	  50% {
		  color: hsl(180, 100%, 90%);
	  }
	  
	  66% {
		  color: hsl(240, 100%, 90%);
	  }
	  
	  83% {
		  color: hsl(300, 100%, 90%);
	  }
	  
	  to {
		  color: hsl(360, 100%, 90%);
	  }
  }

  h1 {
	border-radius: 15px 15px 0 0;
	color: #ADD6EB;
	font-family: 'Maven Pro', helvetica, calibri, arial, sans-serif;
	font-size: 24px;
	padding-top: 10px;
	text-align: center;
	text-shadow: 1px 1px 10px black;
	position: relative;
	top: -20px;
	left: -20px;
	width: 800px;
	height: 100px;
	line-height: 79px;
	margin-bottom: 10px;
}


  .content .circle {
	-webkit-animation-duration: 3s;  
	-webkit-animation-name: tilt;  
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-webkit-transform-style: preserve-3d;
	-moz-animation-duration: 3s;  
	-moz-animation-name: tilt;  
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	-moz-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-moz-transform-style: preserve-3d;
	-o-animation-duration: 3s;  
	-o-animation-name: tilt;  
	-o-animation-iteration-count: infinite;
	-o-animation-direction: alternate;
	-o-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-o-transform-style: preserve-3d;
	animation-duration: 3s;  
	animation-name: tilt;  
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	transform-style: preserve-3d;
	background-image: -webkit-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0.2), rgba(50,50,50,0.15) 100%);
	background-image: -moz-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2) 100%);
	background-image: -o-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2) 100%);
	background-image: -ms-radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2) 100%);
	background-image: radial-gradient(50% 50%, ellipse farthest-corner, rgba(255, 255, 255, 0.2), rgba(0,0,0,0.2) 100%);
	border-radius: 300px;
	box-shadow: 0 0 100px white;
	height: 600px;
	width: 600px;
	margin: 0 auto;
	text-align: center;
}


.content h1 {
	position: static;
	width: auto;
	height: auto;
	padding-top: 110px;
	text-shadow: 2px 2px 2px black;
}

.content h1 em {
	-webkit-transform: translateZ(40px);
	-moz-transform: translateZ(40px);
	-o-transform: translateZ(40px);
	-ms-transform: translateZ(40px);
	transform: translateZ(40px);
	display: block;
	font-size: 48px;
	position: relative;
	top: 10px;
	left: -4px;
	color: #fafafa;
}
.content h1 strong {
	-webkit-transform: translateZ(90px);
	-moz-transform: translateZ(90px);
	-o-transform: translateZ(90px);
	-ms-transform: translateZ(90px);
	transform: translateZ(90px);
	font-size: 40px;
	font-family: 'Maven Pro', helvetica, calibri, arial, sans-serif;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 380px;
	color: white;
	text-shadow: 1px 2px 1px #202020;
}

.content h2 {
	-webkit-transform: translateZ(100px);
	-webkit-animation-duration: 3s;  
	-webkit-animation-name: rainbow;  
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
	-webkit-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-moz-transform: translateZ(100px);
	-moz-animation-duration: 3s;  
	-moz-animation-name: rainbow;  
	-moz-animation-iteration-count: infinite;
	-moz-animation-direction: alternate;
	-moz-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-o-transform: translateZ(100px);
	-o-animation-duration: 3s;  
	-o-animation-name: rainbow;  
	-o-animation-iteration-count: infinite;
	-o-animation-direction: alternate;
	-o-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	-ms-transform: translateZ(100px);
	-ms-animation-duration: 3s;  
	-ms-animation-name: rainbow;  
	-ms-animation-iteration-count: infinite;
	-ms-animation-direction: alternate;
	-ms-animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	transform: translateZ(100px);
	animation-duration: 3s;  
	animation-name: rainbow;  
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
	color: #fafafa;
	display: block;
	font-size: 120px;
	text-transform: lowercase;
	padding-right: 0;
	text-shadow: 4px 4px 1px black;
	width: 200%;
	left: 50%;
	margin-left: -295px;
	font-family: 'Pacifico', helvetica, trebuchet ms, serif;
}

.content h3 {
	-webkit-transform: translateZ(50px);
	-moz-transform: translateZ(50px);
	-o-transform: translateZ(50px);
	-ms-transform: translateZ(50px);
	transform: translateZ(50px);
	font-size: 25px;
	font-family: 'Maven Pro', helvetica, calibri, arial, sans-serif;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 460px;
	color: white;
	text-shadow: 1px 2px 1px #202020;
}
