html {
	position: relative;
	height: 100%;
}

body {
	margin: 0 auto 0 auto;
	border: 0;
	padding: 0.5em;
	overflow-x: hidden;
	overflow-y: scroll;
	font-family: 'Titillium Web', sans-serif;
	font-size: 16px;
	color: #ef7f1a;
	width: 66%;
	min-width: 400px;
	background-color: #1c1c1c;
}

h1, h2 {
	font-weight: bold;
	margin: 0;
}

h1 {
	font-size: 32px;
	text-decoration: underline;
}

h2 {
	font-size: 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	display: block;
	width: 100%;
	text-align: center;
	margin: 0;
	border: 0;
	padding: 0;
}

ul li {
	display: inline-block;
	overflow: hidden;
	margin: 0.5em;
	border: 0;
	padding: 0;
	background-color: white;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	transition: all .33s ease;
	text-align: left;
}

ul li:hover {
	background-color: #ff8f2a;
	color: white;
}

ul li a {
	display: block;
	position: relative;
	width: 16em;
	height: 8em;
	padding: 0.5em;
	transition: inherit;
}

ul li p {
	position: absolute;
	bottom: -10em;
	transition: inherit;
	margin: 0 0 0.5em 0;
}

ul li:hover p {
	bottom: 0;
}

textarea {
	display: block;
	width: 100%;
	min-height: 5em;
	resize: vertical;
	overflow: scroll
	box-sizing: border-box;
	margin: 0.5em;
	border: 0;
	padding: 0.5em;
	font-family: 'Inconsolata', 'Consolas', 'Lucida Console', monospace;
	font-size: 18px;
}
