/* Focus Splash Screen — static logo, fades out after a few seconds */

#fss-splash {
	position: fixed;
	inset: 0;
	z-index: 10000000001;
	background: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.6s ease;
}

#fss-splash.fss-hide {
	opacity: 0;
	pointer-events: none;
}

.fss-logo {
	width: min(80vw, 600px);
	height: auto;
}

/* Prevent scrolling behind the splash while it is visible */
body.fss-lock {
	overflow: hidden;
}
