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

html, body, #sapper {
	height: 100%;
	margin: 0;
	padding: 0;
	width: 100%;
}

body {
	background-color: #fff6dc;
	margin: 0;
	font-family: 'Cardo', serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: #333;
	overscroll-behavior: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0 0 0.5em 0;
	font-weight: 700;
	line-height: 1.2;
}

h1 {
	font-size: 2em;
}

a {
	color: inherit;
}

img {
	height: auto;
	width: 100%;
}

code {
	font-family: menlo, inconsolata, monospace;
	font-size: calc(1em - 2px);
	color: #555;
	background-color: #f0f0f0;
	padding: 0.2em 0.4em;
	border-radius: 2px;
}

@media (min-width: 400px) {
	body {
		font-size: 22px;
	}
}

/** Internet Explorer **/
.no-smil nav,
.no-smil #app-main {
	display: none;
}

@supports (-ms-ime-align: auto) {
	.no-smil nav {
		display: block;
	}

	.no-smil #app-main {
		display: flex;
	}
}