html {
	font-size: 62.5%; 
	box-sizing: border-box;
	line-height: 1.6;
}


body {
    /* font-family: 'Baskerville', sans-serif; */
    font-family: 'Baskerville BT', sans-serif;
    background-color: #666666;
    color: #e7e7e7;
	margin: 2rem;
	line-height: 1.3;
	font-size: 2rem; 
	font-weight: 400;
}

a {
    color: #fd8719;
}

main {
	margin: auto;
	max-width: 66rem;
	padding: 0 1rem;
	width: 100%;
}

h1 {
	color: #019e01;
	margin: 0 0 1rem;
	font-weight: bold;
}

h2 {
	margin: 2rem 0 1rem;
}

h4 {
	margin: 1rem 0 0rem;
}

ul {
	margin: 1rem 0 1rem;
}
/*
button {
	display: inline-block;
	padding: 0.8rem 1.4rem;
	background-color: #292929;
	color: #ffffff;
	text-decoration: none;
	border-radius: 0.8rem;
	font-weight: 500;
	font-size: 1.5rem;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
}

button:hover {
	background-color: #e6761a;
	transform: translateY(-0.2rem);
	box-shadow: 0 0.6rem 1.2rem rgba(0, 0, 96, 0.15);
}

button:active {
	transform: translateY(0);
	box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 96, 0.1);
}
*/