* {
	box-sizing: border-box;
}

body {
	background-color: #ffffff;
	color: black;
	text-align: center;
}

.container {
	text-align: center;
	max-width: 800px;
	height: 90vh;
	margin: auto;
	display: flex;
	align-items: center;
	padding: 0px 20px;
}

.logo {
	background-image: url('logo.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	width: 100%;
	height: 60%;
	z-index: 2;
}

.backdrop {
	background-image: url('backdrop.png');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center bottom;
	width: 100%;
	height: 60%;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}