@font-face {
	font-family: "zodiac";
	src: url("zodiac.ttf") format('truetype');
}

body {
  overflow: hidden;
}

html {
	color: #000;
	background-color: #000;
	font-family: "zodiac";
	overflow: hidden;
}

* {
	overflow: hidden !important;
	overflow-y: hidden;
	cursor: none;
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Safari */
	-khtml-user-select: none; /* Konqueror HTML */
	-moz-user-select: none; /* Old versions of Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
	supported by Chrome, Edge, Opera and Firefox */
	margin: 0px;
	border: 0px;
}

::-webkit-scrollbar{
     opacity:0;
     background: transparent;
}
::-webkit-scrollbar:hover{
     opacity: 1;
}
#content {
	position: relative;
	z-index: 10;
	font-family: "zodiac";
	font-size: 1.5em;
	transition: opacity 0.5s ease-in-out;
	opacity: 0;
	padding: 0.5em;
	overflow: hidden;
	overflow-y: hidden;
}

#light {
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	background-color: #ffffff;
	box-shadow: 0 0 60px 30px #ffffff, 0 0 100px 60px #ffffff, 0 0 140px 90px #fff;
}

#hide {
	filter: brightness(0);
	z-index: 1000;
	height: 0px;
	width: 0px;
	background-repeat: no-repeat;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left:-250px;
	margin-top:-250px;
}

.blurout {
	-moz-animation:blurout 0.3s;
	-webkit-animation:blurout 0.3s;
	animation:blurout 0.3s ease forwards;
}

@-moz-keyframes blurout  {
	0% {
		-moz-filter:blur(0.8px);
	}

	100% {
		-moz-filter:blur(0px);
	}

}
@-webkit-keyframes blurout  {
	0% {
		-webkit-filter:blur(0.8px);
	}
	100% {
		-webkit-filter:blur(0px);
	}

}
@keyframes blurout  {
	0% {
		filter:blur(0.8px);
	}
	100% {
		filter:blur(0px);
	}
}


.blurin {
	-moz-animation:blurin 0.3s;
	-webkit-animation:blurin 0.3s;
	animation:blurin 0.3s ease forwards;
}

@-moz-keyframes blurin  {
	0% {
		-moz-filter:blur(0px);
	}

	100% {
		-moz-filter:blur(0.8px);
	}

}

@-webkit-keyframes blurin  {
	0% {
		-webkit-filter:blur(0px);
	}
	100% {
		-webkit-filter:blur(0.8px);
	}
}

@keyframes blurin  {
	0% {
		filter:blur(0px);
	}
	100% {
		filter:blur(0.8px);
	}
}

#distortion-text {
  position: absolute;
  overflow: hidden;
  z-index: 1999;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

#hidden {
	position: absolute;
	overflow: hidden;
	z-index: 1999;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.show {
	opacity: 1;
}
.hide {
	opacity: 0;
	transition: opacity 400ms;
}
