html, body{
	padding:0px;
	margin:0px;
	font-family: 'Lato', 'Arial', sans-serif;
}
html{
	width: 100%;
	height: 100%;
	background-color:#4c3214;
	background-image:url(../images/coolbg.png);
	background-position: 50% 10px;
	background-attachment:fixed;
	background-repeat:no-repeat;
	background-size:cover;
	overflow:hidden;
}
body{
	height:100%;
	overflow: scroll;
	-webkit-overflow-scrolling: touch;
	/* Disable selection */
	-webkit-user-select: none;
	-moz-user-select: -moz-none;
	-ms-user-select: none;
	user-select: none;
}
#header{
	text-align:center;
	position:fixed;
	left: 0px;
	width: 100%;
	color: #fff;
	font-weight: 300;
}
#content{
	position: fixed;
	left: 50%;
	top: 50%;
	white-space:nowrap;
}
#content a{
	display:inline-block;
	background-attachment: scroll;
	background-size: contain;
	background-position:top left;
	background-origin:content-box;
	background-clip: content-box;
	background-repeat:no-repeat;
	-webkit-transition: .5s transform ease;
	-o-transition: .5s transform ease;
	transition: .5s transform ease;
}
#content a:active{
	-webkit-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
#code{
	background-image: url(../images/_b_code.svg);
}
#code:active{
	background-image: url(../images/_b_code_active.svg);
}
#blog{
	background-image: url(../images/_b_blog.svg);
}
#blog:active{
	background-image: url(../images/_b_blog_active.svg);
}
#contact{
	background-image: url(../images/_b_about.svg);
	float:left;
}
#contact:active{
	background-image: url(../images/_b_about_active.svg);
}
#footer{
	text-align: center;
	position: fixed;
	left: 0px;
	width: 100%;
	color: #fff;
	font-weight: 300;
	vertical-align: middle;
}
#footer a, #footer img{
	transition: all .5s;
}
#footer a:active{
	opacity:0.5;
}
#footer a:active img{
	-webkit-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-o-transform: scale(1.2);
	transform: scale(1.2);
}
#contactme{
	position:absolute;
	text-decoration: none;
	color:#fff;
	cursor:pointer;
	display:none;
	text-align:center;
}
#contactme a{
	text-decoration: none;
	color: #fff;
}