* {
	box-sizing: border-box;
	margin: 0;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;
}

body {
	font-family: 'Avenir', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: #eee;
	padding-top: 3rem;
	font-size: 1,5rem;
	background: #222;
}

@media screen and (max-width: 900px) {
	html {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 10px;
	}
	body {
		padding: 2rem;
	}
}