ui/hq/elements/introscreen.razor.scss
IntroScreen {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
	color: #fff;
	background-color: #800;

	flex-direction: column;
	align-items: center;
	justify-content: center;

	font-weight: bold;
	font-size: 125px;

	gap: 150px;
	animation: fade-out 1.0s forwards 7s;

	.top-sound {
		sound-in: "intro-top-blorp";
	}
	.bottom-sound {
		sound-in: "intro-bottom-blorp";
	}

	.invis {
		opacity: 0;
	}
}

@keyframes fade-out {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}