/* CSS Resets */
h1, h2, h3, h4, p, nav ul {
    padding: 0;
    margin: 0;
}
nav ul {
    list-style-type: none;
}
img { max-width: 100%; display: block; }
* { box-sizing: border-box;}

/* end Resets */
html {
    scroll-behavior: smooth;
}

body {
	font-family: "trilby", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1rem;
}

em {
	font-style: normal;
	font-weight: bold;
}

h1, h2 {
	color: #002900;
	font-family: "gelica", sans-serif;
	font-weight: 700;
	font-style: normal;
}
nav {
    border-top: 2px solid #333;
	
}
nav ul li a {
	text-decoration: none;
	display: block;
	color: #002900;
	font-weight: bold;
	border-bottom: 2px solid #333;
	text-align: center;
	padding: 10px;
	font-variant: small-caps;
}

header, footer {
	background-color: rgba(83,149,76,1.00);
	color: #FFFFFF;
}

header, section, footer {
    padding: 20px;
}
header {
	font-family: "gelica", sans-serif;
	font-weight: 400;
	font-style: normal;
}


address a {
	color: white;
	text-decoration: none;
}

section:nth-child(even){
	background-color: #C2E2BF;
}

.container {
    max-width: 1000px;
}

h1, h2 {
    margin-bottom: .5em;
}

p {
    line-height: 1.4em;
    margin-bottom: 1em;
}

ol li {
    margin-bottom: 1em;
}

img {
    margin-bottom: 20px;
}

@media only screen and (min-width: 768px) {
    nav ul { display: flex; }
    nav ul li { flex: 1; }
	body { font-size: 1.2rem; }
}

@media only screen and (min-width: 1000px) {
    .container{ margin: auto; }
    nav ul {
        max-width: 1000px;
        margin: auto;
    }
    .content { 
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }
	
	#overview .content {
		grid-template-columns: 1fr 1fr;
	}
	
	#summary img {
		margin: auto;
	}
	
}
