@font-face {
	font-family: 'Roboto Slab';
	font-style: normal;
	font-weight: 400;
	src: local('Roboto Slab Regular'), local('RobotoSlab-Regular'), url('../fonts/RobotoSlab-Regular.ttf');
}
@font-face {
	font-family: 'Roboto Slab';
	font-style: normal;
	font-weight: 300;
	src: local('Roboto Slab Light'), local('RobotoSlab-Light'), url('../fonts/RobotoSlab-Light.ttf');
}
html, body {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
}
body {
	font-family: 'Roboto Slab', serif;
	font-weight: 400;
	background-color: #111;
	color: #fff;
	text-shadow: 0 1px 1px rgba(255,255,255,.4);
}
div.color {
	opacity: .15;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
a {
	color: #fff;
	text-decoration: none;
}
main {
	display: table;
	width: 100%;
	height: 100%;
}
main .center {
	display: table-cell;
	max-width: 400px;
	vertical-align: middle;
	text-align: center;
	position: relative;
	margin: auto;
}
main section {
	display: block;
	max-width: 620px;
	margin: 0 auto;
	padding: 16px 0;
}
main .separator {
	border-bottom: 1px solid rgba(255,255,255,.4);
}

main .profile a h1 {
	letter-spacing: 1px;
}
main .profile a img {
	border: 3px solid #fff;
	border-radius: 100%;
	box-shadow: 0 0 3px rgba(255,255,255,.5);
}
main .profile small {
	color: #ccc;
	margin-left: 10px;
	letter-spacing: 0;
}
main .about {
	font-weight: 300;
	font-size: 16px;
	position: relative;
}
main .about .gopher {
	background-image: url('../img/gopher.png');
	opacity: .8;
	height: 100px;
	width: 100px;
	background-size: cover;
	position: absolute;
	right: 0;
	bottom: 0;
	transition: all .3s;
}
main .about .gopher:hover {
	opacity: 1;
}
main .contact ul {
	list-style: none;
	padding: 0;
}
main .contact ul li {
	font-size: 20px;
	list-style: none;
	display: inline-block;
	margin: 0 8px;
}
main .contact ul li a {
	border: 1px solid rgba(255,255,255,.6);
	color: rgba(255,255,255,.6);
	padding: 8px;
	border-radius: 100%;
}
main .contact ul li a:hover {
	border-color: #fff;
	color: #fff;
	background-color: rgba(0,0,0,.6);
	transition: all .6s;
	box-shadow: 0 0 1px #fff;
}
main .contact noscript strong {
	display: block;
	margin-top: 20px;
}
main .four-o-four {
	height: 300px;
	width: 300px;
	line-height: 260px;
	border: 2px solid #fff;
	border-radius: 100%;
	padding: 0;
	text-shadow: 0 0 3px #fff;
	box-shadow: 0 0 30px #fff;
	margin-bottom: 40px;
	background: rgba(0,0,0,.7);
}
main .go-back a {
	color: #000;
	width: 80px;
	height: 80px;
	line-height: 80px;
	margin: auto;
	border: 1px solid #000;
	border-radius: 100%;
	background: rgba(255,255,255,.5);
	font-size: 16px;
	text-shadow: 0 0 3px #000;
	display: block;
	transition: all .3s;
	box-shadow: 0 0 30px #000;
}
main .go-back a:hover {
	background: rgba(255,255,255,.9);
}
