.main {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden auto;
}
#tis {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	gap: 10px;
}
#base {
	width: 100vw;
	height: 100vh;
	background-color: #000;
}
#title {
	position: fixed;
	top: 0;
	left: 0;
	font-size: calc(50vw / 5);
	font-weight: 900;
	color: transparent;
	-webkit-text-stroke: 1px rgb(255, 255, 255);
	background-clip: text;
	text-shadow:
		0 0 8px rgba(200, 220, 255, 0.8),
		0 0 16px rgba(180, 200, 255, 0.6),
		0 0 24px rgba(160, 180, 255, 0.4);
	line-height: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
	z-index: -1;
}
#title span {
	display: inline-block;
	opacity: 0;
	transform: rotate(20deg) translateY(calc(50vw / 10));
	animation: fi 0.3s forwards;
}
#title span:nth-child(1) {
	animation-delay: 0.1s;
}
#title span:nth-child(2) {
	animation-delay: 0.2s;
}
#title span:nth-child(3) {
	animation-delay: 0.3s;
}
#title span:nth-child(4) {
	animation-delay: 0.4s;
}
#title span:nth-child(5) {
	animation-delay: 0.5s;
}
@keyframes fi {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (max-aspect-ratio: 1/1) {
	#title {
		font-size: calc(75vw / 5);
	}
	#title span {
		transform: rotate(20deg) translateY(calc(75vw / 10));
	}
}
