*{
	box-sizing: border-box;
}
body{
	background: #111;
	color: #fafafa;
	font-size: 12px;
}
ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.clearfix{
	clear: both;
	display: block;
	height: 0;
	width: 0;
}
header{
	background: #fafafa;
	height: 60px;
	margin: 0 auto;
	position: fixed;
	top: -60px;
	transition: all .5s ease .3s;
	width: 100%;
	z-index: 100;
}
nav{
	float: left;
	position: relative;
}
#menu{
	background: url(../images/menu.png) center center no-repeat #369;
	cursor: pointer;
	display: block;
	height: 60px;
	width: 60px;
}
nav ul{
	border-bottom: none;
	box-sizing: border-box;
	height: 0px;
	left: 0;
	overflow: hidden;
	position: absolute;
	top: 60px;
	transition: all .1s ease;
}
nav ul li{
	border: 1px solid #ccc;
	border-bottom: none;
}
nav ul li a{
	background-color: #fafafa;
	background-size: 15px 15px;
	background-position: 22px 9px;
	background-repeat: no-repeat;
	box-sizing: border-box;
	color: #666;
	display: block;
	padding: 10px 10px 10px 70px;
	text-align: left;
	text-decoration: none;
	text-transform: uppercase;
	width: 200px;
}
nav ul li a:hover{
	background-color: #efefef;
}
#daimonikos{
	color: #ccc;
	display: block;
	font-size: 22px;
	font-weight: bold;
	margin: 15px auto;
	text-align: center;
	text-decoration: none;
	width: 150px;
}
#canvas_wrapper{
	background: url(../images/dot_bg.png) top center;
	height: 400px;
	position: relative;
}
#canvas{
	display: none;
	position: absolute;
	top: 0;
	z-index: 10;
}
#profile{
	margin: 0 auto;
	max-width: 600px;
	padding: 130px 20px 0 20px;
	text-align: center;
	vertical-align: center;
	width: 100%;
	z-index: 20;
}
#photo{
	background: url(../images/jesus.jpg) center center no-repeat;
	background-size: cover;
	border: 3px solid #369;
	border-radius: 50%;
	display: block;
	height: 150px;
	margin: 0 auto;
	width: 150px;
}
#name{
	display: block;
	font-size: 32px;
	padding-top: 20px;
}
section{
	padding: 40px;
}
.blue{
	background: #369;
}
h2{
	color: #eee;
	font-size: 14px;
	margin: 0;
	padding: 0 0 40px 0;
	text-align: center;
}
.content{
	margin: 0 auto;
	max-width: 980px;
	width: 100%;
}
#social{
	margin: 0 auto;
	width: 162px;
}
#social li{
	background-color: rgba(0,0,0,.2);
	float: left;
	height: 50px;
	margin: 2px;
	width: 50px;
}
#social li a{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px auto;
	display: inline-block;
	height: 50px;
	opacity: .8;
	width: 50px;
}
#social li a:hover{
	border: 1px solid rgba(255,255,255,.7);
	opacity: 1;
}
@media screen and (min-width: 640px){
	#canvas{
		display: block;
	}
	#profile{
		padding: 150px 20px 0 50px;
	}
	#photo{
		display: inline-block;
		float: left;
	}
	#name{
		display: inline-block;
		float: left;
		font-size: 42px;
		padding: 80px 0 0 50px;
	}
}