* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	justify-content: center;
	height: 100dvh;
	background-repeat: no-repeat;
	background: radial-gradient(#080808, #080808);
	position: relative;
}

body.bgFade::before {
	content: '';
	position: fixed;
	inset: 0;
	background: radial-gradient(#0f0633, #050118);
	opacity: 0;
	pointer-events: none;
	animation: fadeOverlay 1s ease-in forwards;
}

@keyframes fadeOverlay {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.container {
	display: flex;
	margin: 1rem 0;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2em;
	color: #f8d680;
	font-family: serif;
	font-weight: 300;
	font-style: normal;
	user-select: none;
	filter: drop-shadow(2px 2px 2px black);
}

.container .logo {
	max-width: 300px;
	display: flex;
	text-align: center;
	flex-direction: column;
	gap: 5px;
	margin: 20px;
	-webkit-user-drag: none;

	img {
		object-fit: contain;
		width: 100%;
	}
}

.container > div > p {
	font-size: 1.3rem;
	font-weight: 800;
	font-variant: all-small-caps;
	letter-spacing: 3px;
	filter: drop-shadow(0 0 1px #f8d680);
}

.fade {
	animation: fadeInAnimation ease-in-out 4s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

.fade2 {
	animation: fadeInAnimation2 ease-in 5s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}

/* .bgFade {
	animation: bgFade ease-in 2s;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
} */

@keyframes bgFade {
	0% {
		background: radial-gradient(#000000, #000000);
	}

	100% {
		background: radial-gradient(#0f0633, #050118);
	}
}

@keyframes fadeInAnimation {
	0% {
		opacity: 0;
	}

	15% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeInAnimation2 {
	0% {
		opacity: 0;
	}

	75% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.shine {
	-webkit-filter: brightness(1.3);
	-webkit-mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.7) 40%, #000 50%, rgba(0, 0, 0, 0.7) 80%);
	-webkit-mask-size: 200%;
	filter: brightness(1.3);
	mask-image: linear-gradient(-75deg, rgba(0, 0, 0, 0.7) 40%, #000 50%, rgba(0, 0, 0, 0.7) 80%);
	mask-size: 200%;
	animation: shine 5s infinite;
	animation-timing-function: ease-in;
}

@-webkit-keyframes shine {
	0% {
		-webkit-mask-position: 150%;
	}

	25% {
		-webkit-mask-position: -50%;
	}

	100% {
		-webkit-mask-position: -50%;
	}
}

@keyframes shine {
	0% {
		-webkit-mask-position: 150%;
	}

	25% {
		-webkit-mask-position: -50%;
	}

	100% {
		-webkit-mask-position: -50%;
	}
}
