.logo-fade-bg {
	background: #000;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}

.logo-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100vw;
	height: 100vh;
}

.logo-fade {
	opacity: 0;
	transition: opacity 1.5s ease-in;
	max-width: 80vw;
	max-height: 80vh;
	width: auto;
	height: auto;
	display: block;
}

.logo-fade.visible {
	opacity: 1;
}