* {
	overflow: hidden;
}

html, body {
	margin: 0;
	padding: 0;
	width: 100vw;
	height: 100vh;
	background-color: white;
}

#logo {
	width: 90px;
	height: 90px;
	left: 50%;
	position: relative;
	transform: translate(-50%, 0);
}

.media {
	display: hidden;
	position: absolute;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	width: auto;
	height: 100%;
	z-index: 0;
	background: white;
	transition: opacity .5s ease-in-out;
}

@media only screen and (min-aspect-ratio: 8/5) {
	.media {
		width: 100%;
		height: auto;
	}
	#logo {
		width: 48px;
		height: 48px;
	}
}

.centered {
	position: absolute;
	transform: translate(-50%, -50%);
	top: 45%;
	left: 50%;
	width: fit-content;
	height: fit-content;
	z-index: 1;
}

#container {
	width: 120px;
	overflow: visible;
}

p {
	position: absolute;
	color: #767769;
	z-index: 1;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 0.9em;
	width: 100%;
	text-align: center;
}
