body{
	background-color: d0ceb4;
}
#crisp{
	image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
}

#blue{
	background-color:blue;
}

body{
	margin: 3px;
}

p{
	font-family: 'Orbitron', sans-serif;
	color: 212121;
	font-weight: bold;
	transition: .15s;
}

a{
	font-family: 'Orbitron', sans-serif;
	color: 212121;
	border-width: 25px;
	border-style: solid;
	border-color: d0ceb4;
	font-weight: bold;
	transition: .1s linear;
	text-decoration: none;
	font-size: 20px;
}

#side{
	position: absolute;
	width: 250px;
	height:1200px;
	padding-right:6px;
	z-index: 2;
}

#menulink{
	font-family: 'Orbitron', sans-serif;
	color: 212121;
	border-width: 25px;
	border-style: solid;
	border-color: d0ceb4;
	font-weight: bold;
	transition: .1s linear;
	text-decoration: none;
	font-size: 20px;
	z-index: 2;
}
	
#menulink:hover{
	color:d0ceb4;
	font-weight: normal;
	background-color: 212121;
	border-style: solid;
	border-width: 10px;
	border-left-width: 15px;
	border-right-width: 15px;
	border-color: 212121;
	box-shadow: 12px 12px #78776a;
}

#menulink:active{
	color:d0ceb4;
	font-weight: normal;
	background-color: 212121;
	border-style: solid;
	border-width: 10px;
	border-left-width: 400px;
	border-right-width: 400px;
	border-color: 212121;
	box-shadow: 12px 12px #78776a;
}

#menulink:focus{
	color:d0ceb4;
	font-weight: normal;
	background-color: 212121;
	border-style: solid;
	border-width: 10px;
	border-left-width: 400px;
	border-right-width: 400px;
	border-color: 212121;
	box-shadow: 12px 12px #78776a;
}

#gradient{
	position: fixed;
	top: -5px;
	left: 0px;
	z-index: 3;
	opacity: .5;
}

#logo{
	height: 180px;
	width: 162px;
	position: absolute;
	padding: 25px;
	padding-top: 8px;
	background-co lor: 212121;
	text-align: center;
	text-decoration: underline;
}

#sidebar{
	position: absolute;
	top: 230px;
	left: 16px;
}

#icon{
	float: left;
	image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-crisp-edges;
    image-rendering: pixelated;
	opacity: 1;
	transition: .1s linear;
	z-index: 1;
}

#middle{
	position: relative;
	width: 80%;
	margin-left: 262px;
	height: 1200px;
}

#line1{
	position: relative;
	animation: .25s linear 0s 1 linemove1;
	float: right;
	top: 187px;
	height: 4px;
	width: calc(100% - 12px);
	margin: 12px;
	background-color: 212121;
	box-shadow: 2px 2px 1px #78776a;
	z-index: 2;
}

@keyframes linemove1{ 
	0%{width: 0px;}
	100%{width: calc(100% - 12px);}
	
}

#line2{
	position: absolute;
	animation: .25s linear .25s 1 linemove2;
	-webkit-animation-fill-mode: forwards;
	float: left;
	left: -12px;
	top: 187px;
	height: 0px;
	width: 4px;
	margin: 12px;
	background-color: 212121;
	box-shadow: 2px 2px 1px #78776a;
	z-index: 1;
}

@keyframes linemove2{ 
	0%{height: 0px;}
	100%{height: calc(100% - 12px);}
	
}