* {
	margin: 0;
}

/* Splash Screen */
main.splashScreen {
	min-height: calc(100vh);
	display: flex;
	justify-content: center;
	align-items: center;
	background: center center / cover;
	position: relative;
}

main.splashScreen::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	background-color: rgba(0, 0, 0, .4);
	opacity: .6;
}

main.splashScreen > * {
	z-index: 1;
}

.splash {
	margin: 2em;
	position: relative;
}

.splash .logo {
	width: 500px;
	max-width: 100%;
	height: auto;
}