/* hi */

* {
	margin: 0;
	padding: auto;
}

body {
	overflow-x: hidden;
	overflow-y: hidden;
}

@font-face {
	font-family: "minecraft";
	src: url(../fonts/mc_font.ttf);
}

@keyframes animFadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes animFadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}

}

@keyframes rotate {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes glowAnim {
	0% {
		text-shadow:
			0 0 5px #00BFFF,
			0 0 10px #00BFFF,
			0 0 15px #00BFFF,
			0 0 20px #1E90FF,
			0 0 2px #00bfff;
	}

	50% {
		text-shadow:
			0 0 0px #00BFFF,
			0 0 0px #00BFFF,
			0 0 0px #00BFFF,
			0 0 0px #1E90FF,
			0 0 2px #00bfff;
	}

	100% {
		text-shadow:
			0 0 5px #00BFFF,
			0 0 10px #00BFFF,
			0 0 15px #00BFFF,
			0 0 20px #1E90FF,
			0 0 2px #00bfff;
	}
}

.bg-img {
	background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../textures/img.jpg);
	background-size: cover;
	height: 100vh;
	filter: blur(10px);
	transform: scale(1.5);
	z-index: 0;
}

header {
	background-size: cover;
	background-position: center;
}

ul {
	position: fixed;
	list-style-type: none;
	right: 20px;
	top: 20px;
	animation: animFadeIn 2s;
}

ul li {
	display: inline-block;
}

ul li a {
	text-decoration: none;
	color: #6c74f6;
	padding: 5px;
	border: 1px solid #6c74f6;
	transition: 0.25s ease;
}

ul li a:hover {
	background-color: #6c74f6;
	color: #000;
}

ul li.active a {
	background-color: #6c74f6;
	color: #000;
}

.tooltip {
	position: relative;
	display: inline-block;
}

.tooltip .tooltiptext {
	font-size: 14px;
	visibility: hidden;
	width: 120px;
	background-color: black;
	color: #fff;
	text-align: center;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 5;
	top: 170%;
	left: 50%;
	margin-left: -60px;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
}

.logo img {
	animation: animFadeIn 4s;
	width: 150px;
	height: 60px;
	position: fixed;
	z-index: 0;
}

.watermark {
	animation: animFadeIn 2s;
	animation-fill-mode: backwards;
}

.watermark img {
	width: 60px;
	height: auto;
	position: fixed;
	bottom: 5px;
	right: 5px;
	opacity: 0.5;
	z-index: 99;
	animation-name: rotate;
	animation-duration: 2s;
	animation-delay: 2s;
	animation-iteration-count: infinite;
}

/* .watermark:hover img {
	animation: rotate 2s infinite;
} */

canvas {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 0;
}

.main {
	max-width: 1200px;
	margin: auto;
	font-family: Century Gothic;
	z-index: 3;
}

.desc {
	color: #fff;
	text-shadow: 0 0 4px #000;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 100%);
	animation-name: animFadeIn;
	animation-duration: 2s;
	animation-delay: 1s;
	animation-fill-mode: backwards;
}

.desc a {
	color: rgb(0, 206, 190);
	text-decoration: none;
	transition: 0.2s ease;
}

.desc a:hover {
	color: rgb(0, 0, 255);
	text-decoration: none;
}

.desc a.active {
	color: rgb(0, 255, 255);
	text-decoration: none;
}

.title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "minecraft";
	animation: glowAnim 5s infinite;
}

.title h1 {
	/*	color: rgb(0, 4, 255); */
	color: black;
	font-size: 70px;
	animation: animFadeIn 2s;
}