* {
	margin: 0;
	padding: 0;
	font-family: sohne, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 300;
}

body {
	position: relative;
	margin: 0;
	padding: 16px;
	color: white;
	background-color: black;
	box-sizing: border-box;
}

header {
	height: 100px;
	width: 100%;
	box-sizing: border-box;
}

header h1 {
	font-weight: bold;
}

main {
	min-height: 70vh;
}

main div.welcome {
	position: relative;
	display: flex;
	width: 100%;
	height: 50vh;
	justify-content: center;
	align-items: center;
}

div.welcome p {
	font-size: 2em;
	margin: 16px;
}

div.welcome p span {
	font-weight: bold;
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	display: flex;
	width: 100%;
	justify-content: flex-end;
	padding: 16px;
	box-sizing: border-box;
}

footer p.author {
	font-size: 0.9em;
}

footer span {
	font-weight: bold;
}
