html, body {
	margin: 0;
	padding: 0;
	background: black;
	color: white;
	font-family: monospace;
	height: 100%;
	width: 100%;
	overflow: hidden;
}
#asciiDisplay {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	white-space: pre;
	font-family: monospace;
	line-height: 100%;
	font-size: 12px;
	opacity: 0;
	transition: opacity 12s ease;
	user-select: none;
	overflow: hidden;
	text-align: left;
}
#logo {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 20%;
	max-height: 20%;
	pointer-events: none;
	user-select: none;
	transition-property: opacity;
	transition-duration: 1s;
}
#options {
	right: 0;
	top: 0;
	margin-left: 32px;
	margin-right: 32px;
	margin-top: 32px;
	position: absolute;
	font-size: 1.3rem;
	font-family: 'Baskerville';
	text-align: right;
	user-select: none;
}
#options > * {
	cursor: pointer;
	user-select: none;
	color: #BBBBBB;
	color: #999999;
}
#options > *:hover {
	color: white;
}
.content {
	color: white;
    position: absolute;
    margin: 0 25%;
	width: 50%;
    top: 48%;
	opacity: 0;
	text-align: left;
	transition-property: opacity;
	transition-duration: 1s;
	font-family: 'Baskerville';
	font-size: 1.6rem;
}
#contact_content {
	text-align: center;
}
#contact_content > .inner {
	position: relative;
	text-align: left;
	width: auto;
	display: inline-block;
}
#home {
	opacity: 0;
	transition-property: opacity;
	transition-duration: 4s;
}
@media screen and (max-device-width: 480px) and (orientation: portrait) {
	#logo {
		max-width: 55%;
		width: 55%;
		max-height: 100%;
	}
	#options {
		font-size: 1.15rem;
	}
	.content {
		top: 35%;
		font-size: 1.2rem;
		margin: 0 15%;
		width: 70%;
	}
	#contact_content.content {
		top: 48%;
		margin: 0;
		width: 100%;
	}
}
