@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');

* {
	padding: 0px;
	margin: 0px;
}

html,
body {
	padding: 0;
	margin: 0;
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	background: var(--color-background-primary);
}

.base {
	position: relative;
	background: var(--color-background-primary);
	color: var(--color-text-primary);
	font-family: var(--font1);
	overflow: clip;
	min-width: 100vw;
}

.base::before {
	position: absolute;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;

	background: url('../images/bg.png');
	background-size: 100% 100%;
	background-position: 0% 100px;

	pointer-events: none;
}

a {
	text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type='number'] {
	-moz-appearance: textfield;
}

.image {
	position: relative;
	object-fit: contain;
	width: 100%;
	height: auto;
}

.imageCover {
	position: relative;
	object-fit: cover;
	width: 100%;
	height: auto;
}

.imageFill {
	position: relative;
	object-fit: fill;
	width: 100%;
	height: 100%;
}

::selection {
	color: #fff;
	background: #22db9eaa;
}

img::selection {
	background: #ffffff00;
}

.pageLoader {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100vw;
	height: 100vh;
	background: var(--color-background-primary);
	z-index: 15;

	opacity: 1;
	pointer-events: auto;
	transition: opacity 0.7s;
}

.sword {
	position: fixed;
	width: 330px;
	height: 300px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.normal {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;

	background: url('../images/sword.png');
	background-size: auto 100%;

	opacity: 0.3;
	mix-blend-mode: luminosity;
}

.fill {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 0%;
	height: 100%;

	background: url('../images/sword.png');
	background-size: auto 100%;

	transition: width 4s;
}

.fill[data-loading='true'] {
	width: 100%;
}

.pageLoader[data-visible='false'] {
	opacity: 0;
	pointer-events: none;
}

/* RWD */
@media (max-width: 1110px) {
}
