body {
	align-content: center;
	background-image: url('cincinnati.jpg');
	background-repeat: no-repeat;
	color: #ffffff;
	display: grid;
	font-family: Arial, sans-Serif;
	gap: 2.5% 5%;
	grid-template-areas: 
		"nav nav nav"
		". header ."
		" aside-left section aside-right"
		". footer .";
	grid-template-columns: 25% auto 25%;
	justify-content: space-between;
	margin: 5vh;
}

nav {
	font-size: 2.5vw;
	font-weight: bold;
	display: inline-block;
	grid-area: nav-p;
	height: 7.5vh;
	margin: 0 2.5vw 0 0;
	white-space: nowrap;
}

#nav-grid > p{
	font-size: 2vw;
}

#img-logo {
	grid-area: nav-img;
	height: 7.5vw;
   margin: 0 2.5vw 0 0;
}

#nav-grid {
	display: grid;
	gap: 2.5% 0;
	grid-area: nav;
	grid-template-areas: "nav-img nav-p nav-p nav-p"
								". path-nav path-nav path-nav";
	grid-template-columns: auto auto auto auto;
	margin: 2.5% 2.5% 0 2.5%;
}

.nav-anchor:link {
	color: #ffffff;
}

.nav-anchor:hover {https://www.sciotomile.com/
	color: #b31942;
}

.nav-anchor:visited {
	color: #ffffff;
}

.nav-anchor:visited:hover {
	color: #b31942;
}

.nav-anchor {
	text-decoration: none;
}

#path-nav {
	grid-area: path-nav;
}

header {
	font-size: 1.25vw;
	grid-area: header;
	text-align: center;
}

section {
/*	font-size: clamp(6pt, 2.25vw, 14pt); */
	font-size: 1.5vw;
	grid-area: section;
}

#aside-left > a > img {
	margin: 1.5vw 6.65vw;
	width: 10vw;	
}

/*#aside-right > a > img {
	margin: 0 6.65vw;
	width: 15vw;	
}*/

aside > a > h2 {
	font-size: 2vw;
	text-align: center;
}

aside > ul {
	font-size: 1vw;
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

#aside-left {
	grid-area: aside-left;
}

#aside-right {
	grid-area: aside-right;
}

footer {
	color: #808080;
	font-weight: bold;
	font-size: 2vw;
	grid-area: footer;
	text-align: center;
}

footer > p > a:hover {
	color: #b31942;
}

footer > p > a {
	color: #808080;
	text-decoration: none;
}
