body {
	margin: 0;
	padding: 0;
	color: white;
	font-family: "Lucida Grande";
	font-size: 16px;
	line-height: 1.3em;

	background-color: black;
	background-repeat: no-repeat;
	background-size: cover;
}


#content {
	position: fixed;
	bottom: 1.5em;
	text-align: center;
	width: 100%;
}


#headline {
	font-size: 5em;
	line-height: 1.2em;
	font-weight: bold;
	-webkit-text-stroke: 4px #222;
	text-shadow:
		3px 3px 0 #666,
		-1px -1px 0 #666,
		1px -1px 0 #666,
		-1px 1px 0 #666,
		1px 1px 0 #666;
	margin: 0;
	padding: 0;
	opacity: 0;
}
#headline.show {
	opacity: 1;
	transition: opacity 0.5s ease;
}
#headline a {
	color: #fff;
	text-decoration: none;
}
#headline a:hover {
	color: #ccc;
}


#text {
	line-height: 1.5em;
	padding: 0em 10em 1em 10em;
	background-color: #000;
	opacity: 0;
}
#text.show {
	opacity: 0.4;
	transition: opacity 0.5s ease;
}


#tag {
	font-size: 2em;
	position: fixed;
	top: 5px;
	right: 10px;
}


#controls {
	position: fixed;
	bottom: 0;
	right: 0;
	height: 1.3em;
	background-color: #ccc;
	color: #000;
	font-size: 0.8em;
	padding: 0.1em 0.3em;
	border-radius: 5px 0px 0px 0px;
}
#controls a {
	color: #000;
}


#explanation {
	position: absolute;
	top: 200px;
	left: 25%;
	width: 50%;
	background-color: #f0f0f0;
	border: 2px solid #666;
	color: #666;
	padding: 2em;
	display: none;
}
#explanation.show {
	display: block;
}

/** mobile **/
@media screen and (max-device-width: 768px) {
	#headline {
		font-size: 2em;
		-webkit-text-stroke: 1px #222;
		text-shadow:
			1px 1px 0 #666,
			-1px -1px 0 #666,
			1px -1px 0 #666,
			-1px 1px 0 #666,
			1px 1px 0 #666;
	}
	#text {
		padding: 0em 1em 1em 1em;
	}
}