body, html {
	margin: 0;
	padding: 0;
}

body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	width: 100vw;
	height: 100vh;
}

img {
	width: 45px;
	height: auto;

	filter: invert(1);
}

h1 {
	margin: 0;
	padding: 0;

	font-family: Arial, Helvetica, sans-serif;
	font-size: 2.5rem;
	font-weight: 300;
	line-height: 1em;
	letter-spacing: 4px;
	text-align: center;
	text-transform: uppercase;
	color: white;
}

section {
	display: flex;
	justify-content: center;

	padding: 40px;
	box-sizing: border-box;

	width: 100%;
	height: 50%;
}

section:first-child {
	align-items: flex-end;
	background-color: black;
}

section:last-child {
	align-items: flex-start;
}