/* stylelint-disable */

*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@font-face {
	font-family: "Ruslan";
	src: url("/fonts/RuslanDisplay-Regular.ttf");
}

@font-face {
	font-family: "Gothampro";
	src: url("/fonts/Gothampro.ttf");
}

html {
	background-color: black;
}

body {
	overflow-y: scroll;
}

body > .background {
	background: url(/images/background.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: fixed;
	height: 100vh;
	width: 100vw;
	z-index: -1;
}

html,
body {
	font-family: Gothampro, Fallback, sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
	font-family: Ruslan, Fallback, sans-serif;
}

@media screen and (max-width: 63rem) {
	html,
	body {
		font-size: calc(8px + 0.8vw) !important;
	}
}

.kn-preloader {
	background: black;
	bottom: 0;
	height: 100%;
	left: 0;
	opacity: 1;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 1000;
	color: lightgray;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.kn-preloader::after {
	background: url(/assets/images/background.jpg) no-repeat;
	background-size: cover;
	bottom: 0;
	content: "";
	left: 0;
	opacity: 0.1;
	position: absolute;
	right: 0;
	top: 0;
	z-index: -1;
}

.kn-preloader-hidden {
	display: none;
	animation: kn-preloading-hiding 1s forwards ease-out;
	pointer-events: none;
}

@keyframes kn-preloader-displaying {
	0% {
		animation-timing-function: ease-out;
		filter: invert(0);
	}

	50% {
		animation-timing-function: ease-in;
		filter: invert(0.3);
	}

	100% {
		filter: invert(0);
	}
}

.kn-preloader-image {
	animation: kn-preloader-displaying 5s infinite;
	height: auto;
	width: 15%;
}

.kn-preloader-text {
	color: lightgray;
	font-size: 1.6rem;
	margin-top: 1rem;
	text-align: center;
}

@keyframes kn-preloading-hiding {
	0% {
		opacity: 1;
		width: 100%;
	}

	99% {
		opacity: 0;
		width: 100%;
	}

	100% {
		opacity: 0;
		width: 0;
	}
}

#__next {
	position: relative;
}

/* stylelint-enable */
