/* /css/base/_base.css */
/* Minimal reset and global base layout */

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

html, body {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Goudy Bookletter 1911', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	background-color: var(--body-bg);
	color: var(--main-text-color);
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

a {
	color: var(--link-color);
	text-decoration: none;
	cursor: pointer;
}


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