* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	background: black; /* Prevents blank space around image */
}

header {
	flex-grow: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: black;
}

header img {
	width: 100vw;
	height: 100vh;
	object-fit: contain;
	object-position: center;
}

footer {
	text-align: center;
	padding: 10px;
	background: rgba(0, 0, 0, 0.8);
	color: white;
	position: absolute;
	width: 100%;
	bottom: 0;
}