body {
	background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 70%), url(../images/background4.gif);

	background-position: left center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;

	width: 100%;
	height: 100dvh;

	font-family: poppins, sans-serif;

	padding: 0;
	margin: 0;

	user-select: none;

	overflow: hidden;
	transform: translate3d(0, 0, 0);
}

.loader-bg {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;

	font-family: Arial, Helvetica, sans-serif;

}

.loaded {
	height: 0;
	transition: height 0.5s ease-in-out 0.6s;
}

.loaded h1 {
	opacity: 0;
	padding-top: 20px;
	transition: all 0.3s ease-out, padding-top 0.5s ease-out;
}

.active {
	transition: transform 0.2s;
	transform: scale(3);
}

.hide {
	transition: transform 0.2s !important;
	transform: scale(0);
}

.header {
	padding-left: 2%;
}

.header h1 {
	margin: 0;
	padding-top: 100px;
	padding-left: 20px;

	animation:
		move 2s infinite linear,
		FadeinHeader 2s forwards ease-out;
}

img {
	width: min(70vw, 300px);

	pointer-events: none;
}

sup {
	font-size: 0.6em;
}

@keyframes move {
	to {
		background-position: 100px 0;
	}
}

.header h2 {
	color: white;
	font-size: min(5vw, 20px);
	font-weight: 200;
	margin: 0;
	padding-left: 20px;

	animation-name: FadeinHeader;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
}

.link-btns {
	margin-top: 20px;
	position: absolute;
	padding-left: 2%;
	margin-bottom: 40px;

	left: 0;
	bottom: 0;
}

.link-btns li {
	margin-bottom: 0px;
	list-style: none;

	animation-name: FadeinLinks;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

.link-btns a {
	background-color: transparent;
	display: flex;

	padding: 10px 20px;

	text-decoration: none;
	color: white;
	font-size: 22px;

	font-weight: 200;

	transition: 0.3s;
}

.link-btns a:hover {
	transition: 0.3s;
	padding-left: 30px;
}

.footer-links{
	font-size: 12px;
	margin: 0;
	padding-left: 20px;
	padding-top: 5px;
	color: white;

	animation-name: FadeinHeader;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-delay: 0.5s;
}

.footer-link{
	text-decoration: none;
	color: white;
	font-size: 12px;
}

@media screen and (max-width: 1080px) {

	.header h1 {
		padding-top: 40px;
	}

	.link-btns a {
		padding: 5px 20px;
	}
}