html {
	padding: 0;
	margin: 0;
	background-color: #530803;
	background-image: url(tile.jpg);
	height: 100%;
}

body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100%;
	
	font-family: 'Noto Serif', serif;
	color: #fff;
	
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0.65+0,0+70 */
	background: -moz-linear-gradient(top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 70%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(0,0,0,0.65) 0%,rgba(0,0,0,0) 70%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6000000', endColorstr='#00000000',GradientType=0 ); /* IE6-9 */
}

article {
	max-width: 30em;
	line-height: 1.8em;
	padding-left: 5em;
	padding-right: 1em;
}

h1 {
	font-size: 2.9em;
	font-weight: normal;
	text-indent: -.1em;
}

a {
	color: #fff;
	text-decoration: underline;
}

i.logo {
	background-image: url(logo.png);
	background-repeat: no-repeat;
	position: absolute;
	width: 7em;
	height: 4em;
	border: solid 0px #000;
	display: block;
	margin-left: -8em;
	margin-top: -1.5em;
	background-size: contain;
}


@media only screen and (max-width: 630px) {
	body {
		font-size: 10pt;
	}
	
	article {
		padding-left: 2em;
	}
	
	i.logo {
		position: relative;
		margin-left: 0;
		margin-top: 0;
		margin-bottom: .5em;
		height: 2em;
	}
}