body {
	background: #222;
	color: #fff;
	font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans, Tahoma, sans-serif;
	font-size: 16px;
}

main {
	max-width: 800px;
	margin: 0 auto;
}

ul, li {
	margin-top: 5px;
	margin-bottom: 5px;
}

h1 { margin-top: 10px; }

main > div {
	background: #333;
	border: 1px solid #555;
	border-radius: 32px;
	padding: 32px;
	margin: 32px;
	text-align: center;
}

main > div:first-child {
	text-align: left;
}

.tableofcontents {
	padding: 16px 32px;
	font-size: 1.25em;
	line-height: 1.4em;
	text-align: justify;
}

a { text-decoration: none; }
a:link, a:visited { color: #f93; }
a:hover, a:active { color: #fc6; }


.box { position: relative }

.box a.return {
	opacity: 0;
	transition: all 0.25s ease-in-out;
	position: absolute;
	top: 32px;
	left: 32px;
}

.box:hover a.return {
	opacity: 1;
}


@media screen and (max-width: 600px) {
	body {
		font-size: 12px;
	}

	main > div {
		padding: 24px;
	}

	h2 {
		margin: 8px;
		padding: 0;
	}
}




.box:after {
    content: '';
    display: block;
    clear: both;
}

.box h2 {
	margin-top: 0;
}

.pkmn {
	width: 100px;
	height: 100px;
	background: #444;
	border: 1px solid #555;
	border-radius: 25px;
	padding: 0px;
	margin: 4px;
	float: left;
	position: relative;
}

.pkmn a img {
	width: 100px;
	height: 100px;
	transition: all 0.25s ease-in-out;
}

.pkmn:hover a img {
	transform: scale(1.2);
}

.pkmn div {
	opacity: 0;
	visibility: hidden;

	transition: opacity .25s ease-in-out, visibility .25s;
	-moz-transition: opacity .25s ease-in-out, visibility .25s;
	-webkit-transition: opacity .25s ease-in-out, visibility .25s;

	background: #333;
	border: 1px solid #555;
	border-radius: 32px;
	padding: 8px;
	margin: 0;
	text-align: center;

	position: absolute;
	bottom: 95px;
	left: -110px;
	width: 300px;

	z-index: 10;
}

.pkmn:hover div {
	opacity: 1;
	visibility: visible;
}

.origin {
	width: 1em;
	height: 1em;
	position: relative;
	top: 0.125em;
}