* { margin: 0; padding: 0; }
html {
	height: 100%; overflow: hidden; color: #eee;
	font-family: Arial, Helvetica, sans-serif;

	/* Thank you: http://www.colorzilla.com/gradient-editor/ */
	background: #00040a; /* Old browsers */
	background: -moz-linear-gradient(top,  #00040a 0%, #0075d6 63%, #7db9e8 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#00040a), color-stop(63%,#0075d6), color-stop(100%,#7db9e8)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #00040a 0%,#0075d6 63%,#7db9e8 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #00040a 0%,#0075d6 63%,#7db9e8 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #00040a 0%,#0075d6 63%,#7db9e8 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #00040a 0%,#0075d6 63%,#7db9e8 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00040a', endColorstr='#7db9e8',GradientType=0 ); /* IE6-9 */
}
a { color: #eee; }
body {
	height: 100%; width: 100%;
	/* Thank you: http://philipwalton.github.io/solved-by-flexbox/demos/vertical-centering/ */
	display: -webkit-box; display: -webkit-flex; display: -moz-box;
	display: -ms-flexbox; display: flex;
	-webkit-box-align: center; -webkit-align-items: center;
	-moz-box-align: center; -ms-flex-align: center;
	align-items: center; -webkit-box-pack: center;
	-webkit-justify-content: center; -moz-box-pack: center;
	-ms-flex-pack: center; justify-content: center;
}
#content { width: 100%; height: 80%; text-align: center; }
h1, h2, p { margin:37px 0; }
h1 { margin-top: 0; }
h1 {
	font-weight: normal; font-size: 6em;
	padding: 0; width: 100%;
}
h2 { font-size: 3em; font-weight: normal; }
h1, h1 { text-shadow: 4px 4px 2px rgba(0,0,0,0.5); }
p a img { margin: 0 1em; border: 0; }
#old { font-size: 1em; opacity: 0.7; }
