html {
	box-sizing: border-box;
	font-size: 16px;
	min-height: 100%;
	height: 100%;
}

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

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #111;
	background: #fff;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

main {
	flex: 1 0 auto;
}

body > footer,
.site-footer {
	margin-top: auto;
}

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

img {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
}

.site-container {
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 18px;
}

@media (max-width: 780px) {
	.site-container {
		padding: 0 16px;
	}
}
