html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

@font-face {
	font-family: 'OpenDyslexic';
	src: url(fonts/open-dyslexic.ttf);
}

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

	font-family: 'OpenDyslexic', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

	background: indianred;
	color: blanchedalmond;
}

h1 {
	font-weight: normal;
	font-size: 2rem;
	margin: 0;
}

.tagline {
	font-size: 1.06rem;
}

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