table {font-size: 18pt ;font-family:courier new;}
h1 {font-size: 30pt ;font-family:courier new;}
h2 {font-size: 20pt ;font-family:courier new;}
h3 {font-size: 18pt ;font-family:courier new;}
a  {color: black;font-family:courier new; text-decoration: none;}
p {font-size: 15pt ;font-family:courier new;}
nav > ul {
	list-style: none;
	list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'/%3E");
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	position: relative;
}

nav li {
	margin: 0.5em 0 0.5em 0.5em;
	padding: 0;
	font-size: 1.5rem;
	flex: 1 1 0%;
}

@media (min-width: 45em) {
	nav > ul {
		flex-direction: row;
		height: 3em;
	}
	nav li {
		flex: 1;
		font-size: 1em;
	}
}

nav a {
	display: block;
	padding: 0.4em;
	text-decoration: none;
	font-weight: bold;
	text-align: center;
	border: thin solid var(--background-color);
	border-radius: .5em;
	color: (--text-color);
	background-color: var(--background-color);
	transition: all .25s ease-in;
	position: relative;
}

nav li[aria-current] a {
	background-color: black;
	color: #D9B169;
}

nav .subtitle::after {
	position: absolute;
	content: "\21D2";
	color: currentColor;
	display: inline-block;
	width: 2em;
	right: 0;
}

nav .subtitle:hover::after,
nav .subtitle:focus::after {
	content: "\21D3";
}

nav a:focus,
nav a:hover,
nav li[aria-current] a:focus,
nav li[aria-current] a:hover {
	color: var(--background-color);
	background-color: var(--accent1-color);
}
/*     submenu navigation links      */

nav .submenu {
	visibility: hidden;
	height: 0;
	z-index: 1000;
}

nav .submenu li {
	display: block;
	/* width: 15em; */
}
/**     Show the submenu on hover, focus     **/

nav li:hover .submenu,
nav li:active .submenu,
nav li:focus .submenu {
	visibility: visible;
	height: auto;
}

nav li:focus-within .submenu {
	visibility: visible;
	height: auto;
}

:root {
	--background-color: #D9B169;
	--accent1-color: black;
	--accent2-color: #D9B169;
	--text-color: black;
}


