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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-base);
	background: var(--paper);
	color: var(--text);
	font-size: 15px;
	line-height: 1.9;
}

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

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

ul, ol {
	list-style: none;
}

table {
	border-collapse: collapse;
}

button {
	font-family: inherit;
	font-size: inherit;
	background: none;
	border: none;
}

input, textarea, select {
	font-family: inherit;
}

@media (max-width: 767px) {
	body {
		font-size: 14px;
	}
}
