@import "./style.css";

html,
body {
	margin: 0;
	height: 100%;
	width: 100%;
	background: #000;
	overflow: hidden;
}

.app {
	min-height: 100vh;
	position: relative;
	padding: 0;
	display: block;
}

.welcome {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: red;
	background-size: cover;
	background-position: center;
}

.welcome canvas {
	display: block;
	position: absolute;
	inset: 0;
	z-index: 1;
}

.projector {
	position: absolute;
	left: 50%;
	bottom: 2vh;
	width: min(260px, 40vw);
	height: auto;
	transform: translateX(-50%);
	z-index: 2;
	pointer-events: none;
}

.footer {
	position: absolute;
	right: 16px;
	bottom: 12px;
	z-index: 3;
	pointer-events: none;
}

.version {
	font-size: 0.75rem;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}
