body {
	margin: 0;
	padding: 6vh;
	height: 88vh;

	font-family: "Fira Sans", "Calibri", sans-serif;

	display: flex;
	flex-direction: column;
}

main {
	flex-grow: 1;

	display: flex;
	flex-direction: row;
	justify-content: center;
}

#text {
	align-self: center;
	text-align: center;
}

#image {
	height: 60vh;
	max-width: 100%;
	align-self: flex-end;
}

footer {
	text-align: center;
}

a {
	color: steelblue;
	text-decoration: inherit;
}

a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	main {
		flex-direction: column;
	}
}
