*{
	margin: 0px;
	padding: 0px;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html{
	width: 100%;
	height: 100%;
}
body{
	/*
	#222325
	#020e27
	*/
	
	
	width: 100%;
	height: 100%;
	background-color: #000000;
	background-image: linear-gradient(0deg, #000000 60%, #020e27 100%);
	background-repeat: no-repeat;
	background-attachment: fixed;
	
	font-family: Lato;
	font-size: 20px;
	font-weight: 300;
	line-height: 40px;
	color: #eee;
}

header nav{
	display: block;
	font-size: 30px;
	line-height: 30px;
	padding: 30px;
	text-align: right;
}
nav #hamburger{
	color: #fff;
	line-height: 30px;
	text-decoration: none;
}

#logo{
	width: 600px;
	height: 325px;
	margin: 0px auto;
	display: block;
}
#logo img{
	width: 100%;
	height: auto;
}
#logo .top{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 20;
}
#logo .bottom{
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 10;

	-ms-transform: translateY(-30px);
	-webkit-transform: translateY(-30px);
	transform: translateY(-30px);
	  
	animation: flicker 16s linear infinite;
}

main{
	display: block;
	min-height: 800px;
}



footer{
	padding: 30px;
}
footer nav{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 900px;
	margin: 0px auto 30px;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
footer nav > ul{
	width: calc(1/3*100% - (1 - 1/3)*30px);
	list-style-type: none;
	
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
footer nav > ul li{
	border-top: 1px solid #333;
}

footer nav > ul li a{
	color: #444;
}

footer nav #social > li{
	border: none;
	display: inline-block;
	margin-right: 15px;
}

#social a{
	color: #020e27;
}

.fa span{
	display: none;
}

#copyright{
	font-size: 16px;
	line-height: 20px;
	letter-spacing: 0.04em;
	text-transform: lowercase;
	color: #333;
	text-align: center;
	font-weight: 400;
}


@keyframes flicker {
	0%, 19.999%, 22%, 62.999%, 64%, 64.999%, 70%, 100% {
		opacity: .2;
	}
	20%, 21.999%, 63%, 63.999%, 65%, 69.999% {
		opacity: .75;
	}
}
