*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	--darkest: #1f242c;
	--brand: #8cc638;
	font-family: 'Nimbus Sans', Helvetica, system-ui, sans-serif;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--darkest);
	color: #fff;
	font-size: 20px;
	--unit: 1.5rem; /* 24px / 16px = 1.5rem */
	--dble: calc(var(--unit) * 2);
	line-height: var(--unit);
	padding: var(--unit) var(--dble);
}

body {
	margin: 0;
	display: flex;
	flex-direction: column;
	flex-grow: 2;

	width: 100%;
	max-width: 800px;
	margin: 0 auto;

	justify-content: center;
}
