@keyframes hexa {
	0%{
		-webkit-transform: rotate(-90deg);
		-moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		-o-transform: rotate(-90deg);
		transform: rotate(-90deg);
	}
	50%{
		-webkit-transform: rotate(70deg);
		-moz-transform: rotate(70deg);
		-ms-transform: rotate(70deg);
		-o-transform: rotate(70deg);
		transform: rotate(70deg);
	}
}

body{
	background: url(bg.jpg);
	background-size: 1400px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.overlay{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 100000;
	background-color: white;
}

.hexa{
	position: relative;
	width: 200px;
	height: 200px;
	left: 50%;
	margin-left: -100px;
	overflow-y: visible;
	image-rendering: optimize-contrast;             /* STOP SMOOTHING, GIVE ME SPEED  */
}
.hexa div{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.galaxy{
	display: inline-block;
	background: url(hole.png);
	background-size: 200px 234px;
	height: 234px !important;
}
.mask{
	display: inline-block;
	background: url(Hexa.png);
	background-size: cover;
	transition: background-color 0.2s;
	background-color: #fff;
	width: 202px !important;
	height: 202px !important;
	margin: -1px;
}
.animask{
	background-color: transparent;
	-webkit-animation: hexa 1s;
	-o-animation: hexa 1s;
	animation: hexa 1s;
	animation-timing-function: ease-in-out;
}

.logo_container{
	position: absolute;
	right: 0;
	top: 50%;
	height: 234px;
	left: 0;
	margin-top: -122px;
}

.container{
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.anicontainer{
	opacity: 1;
}

.main .background{
	position: absolute;
	height: 100%;
	width: 100%;
	background-image: url(bg.svg);
	background-size: 6200px;
	background-position: center center;
}

.github{
	display: inline-block;
	width: 140px;
	height: 50px;
	background-size: 140px;
	background-image: url(GitHub_Logo.png);
}
.twitter{
	display: inline-block;
	width: 100px;
	height: 100px;
	background-size: 100px;
	background-image: url(Twitter_Logo_Blue.png);
}
.instagram{
	display: inline-block;
	width: 60px;
	height: 60px;
	background-size: 60px;
	margin-right: 15px;
	background-image: url(instagram.png);
}
.links{
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 100000;
	text-align: right;
	opacity: 0.3;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-ms-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}
.links:hover{
	opacity: 1;
}
