h2, h3, h4, h5, h6 {
	margin: 0;
}


body{
	padding: 0;
	margin: 0;
	background-color: #111;
	width: 100%;
	height: 100%;
	font: 16px/1.56 Helvetica, Arial, Geneva, sans-serif;
	color: rgb(2%, 90%, 16%);
	text-align: center;
	overflow: hidden;
}

a {
	color: #FFF;
	font-weight: 200;
}

.name {
	margin-top: 100px;
}

/* 3D Cube */
.space3d {
	-webkit-perspective: 1000px;
	width: 100px;
	height: 100px;
	text-align: center;
	display: inline-block;
}

._3dbox {
	display: inline-block;
	-webkit-transition: all 0.6s cubic-bezier(0.175,0.885,0.320,1.275);
	-moz-transition: all 0.6s cubic-bezier(0.175,0.885,0.320,1.275);
	transition: all 0.6s cubic-bezier(0.175,0.885,0.320,1.275);

	position: relative;
	width: 100px;
	height: 100px;

	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

._3dbox:hover {
	-webkit-transform: rotateX(90deg);
	-moz-transform: rotateX(90deg);
	transform: rotateX(90deg);
}

._3dface {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	/*border: 1px solid #DDD;*/
	background: #111;
	box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);

	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

._3dface--front {
	-webkit-transform: translate3d(0px, 0px, 50px);
	-moz-transform: translate3d(0px, 0px, 50px);
	transform: translate3d(0px, 0px, 50px);
}

._3dface--bottom {
	-webkit-transform: rotateX(-90deg) translate3d(0, 0, 50px);
	-moz-transform: rotateX(-90deg) translate3d(0, 0, 50px);
	transform: rotateX(-90deg) translate3d(0, 0, 50px);
}


/* Footer cuboid */


/* 3D Cube */
.space3d--footer {
	width: 100%;
	height: 60px;
}

._3dbox--footer {
	-webkit-transition: all 0.3s cubic-bezier(0.175,0.885,0.320,1.275);
	-moz-transition: all 0.3s cubic-bezier(0.175,0.885,0.320,1.275);
	transition: all 0.3s cubic-bezier(0.175,0.885,0.320,1.275);

	width: 100%;
	height: 100%;
}


._3dbox--footer ._3dface--front {
	-webkit-transform: translate3d(0px, 0px, 30px);
	-moz-transform: translate3d(0px, 0px, 30px);
	transform: translate3d(0px, 0px, 30px);
}

._3dbox--footer ._3dface--bottom {
	-webkit-transform: rotateX(-90deg) translate3d(0, 0, 30px);
	-moz-transform: rotateX(-90deg) translate3d(0, 0, 30px);
	transform: rotateX(-90deg) translate3d(0, 0, 30px);
}


.name ._3dbox.rotated {
	-webkit-transform: rotateX(90deg);
	-moz-transform: rotateX(90deg);
	transform: rotateX(90deg);
}

/* Inspired by beautiful scrollbar
 * on Joshua Hibbert's website: http://joshnh.com/
 */
::-webkit-scrollbar {
    -webkit-appearance: none;
    height: 14px;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(2%, 90%, 16%);
}

::-webkit-scrollbar-track {
	background-color: #000;
}


.main-cube h1 {
	margin: 0;
	line-height: 100px;
	font-size: 60px;
}

.main-cube h2, .main-cube h3 {
	margin-top: 10px;
}


.main-cube {
	margin: 50px auto;
}

.separator {
	width: 30px;
	display: inline-block;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	background: #000;
	font-size: 14px;
	color: rgb(2%, 90%, 16%);
}

.footer span {
	line-height: 60px;
	margin: 10px;
}