html, body, html * {
	font-family: 'Roboto', sans-serif;
}

* {
	box-sizing: border-box;
}

html, body {
	height: 100%;
}

body {
	margin: 0;
	font: 16px/1.55 Roboto;
	color: #111827;
	background: #f7f8fa;
	display: grid;
	min-height: 100vh;
	grid-template-rows: auto 1fr auto;
}

a {
	color: #689FBD;
	text-decoration: none;
	font-weight: 600;
}

a:hover {
	color: #E79B4A;
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1240px;
	margin: 0 auto;
	padding: 16px;
}
