body {
  color: #333;
  font-family: helvetica, arial, sans-serif;
  line-height: 1.5;
  margin: 4em auto;
  max-width: 52em;
  padding: 0 1em;
}
h1, h2, h3, h4, h5, h6 {
  margin: 1em 0 0.5em 0;
  line-height: 1.2;
}
a:link, a:visited {
  color: #03c;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #06f;
  text-decoration: underline;
}
h1 a:empty:before, h2 a:empty:before, h3 a:empty:before,
h4 a:empty:before, h5 a:empty:before, h6 a:empty:before {
  content: "#";
}
h1 a:empty, h2 a:empty, h3 a:empty, h4 a:empty, h5 a:empty, h6 a:empty {
  visibility: hidden;
  padding-left: 0.25em;
}
h1:hover a:empty, h2:hover a:empty, h3:hover a:empty,
h4:hover a:empty, h5:hover a:empty, h6:hover a:empty {
  visibility: visible;
}
img {
  max-width: 100%;
}
figure {
  margin: 1em 0;
  text-align: center;
}
figcaption {
  font-size: small;
}
pre, code, samp, kbd {
  color: #009;
  font-family: monospace, monospace;
}

date {
  color: rgb(158, 158, 158);
}
mono {
  font-family: monospace, monospace;
}
	
pre kbd {
  color: #060;
}
pre, blockquote {
  background: #eee;
  padding: 0.5em;
}
pre {
  overflow: auto;
}
blockquote {
  border-left: medium solid #ccc;
  margin: 1em 0;
}
blockquote :first-child {
  margin-top: 0;
}
blockquote :last-child {
  margin-bottom: 0;
}
table {
  border-collapse: collapse;
}
th, td {
  border: thin solid #999;
  padding: 0.3em 0.4em;
  text-align: left;
}
@media (prefers-color-scheme: dark) {
  body {
    color: #bbb;
    background: #222;
  }
  a:link, a:visited {
    color: #9bf;
  }
  a:hover, a:active {
    color: #acf;
  }
  pre, code, samp, kbd {
    color: #6cf;
  }
  pre kbd {
    color: #9c9;
  }
  pre, blockquote {
    background: #111;
  }
  blockquote {
    border-color: #444;
  }
  th, td {
    border-color: #666;
  }
}

/* John added */

.aligncenter {
	text-align: center;
}

/* adds offset to scrolling for anchor tags to accomodate fixed header */
:target::before {
	content: "";
	display: block;
	height: 3em;
	margin: -3em, 0 0;
}

.section {
	width: 40em;
}

 /* Menu bar */

 @font-face {
    font-family: chicagoFont;
    src: url(chicago.ttf);
}

 .menu{
	background-color: white;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	border-bottom: 1px solid black;
  }
 
 .dropbtn {
	background-color: white;
	color: black;
	font-size: 1em;
	text-align: left;
	padding: 0em 1em 0em 1em;
	border: none;
	cursor: pointer;	
	margin:0;
	height:2.5em;	
	font-family:chicagoFont;
  }
  
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  .dropdown-content {
	display: none;
	background-color: white;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	position: fixed;
	top: 2.5em;
	font-family:chicagoFont;
	border-top: 1px solid black;
  }
  
  .dropdown-content-disabled {
	padding: 12px 16px;
	color: lightgray;
  }

  .dropdown-content a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  .dropdown-content a:hover {
	background-color: black;
	color: white;
  }
  
  .dropdown:hover .dropdown-content {
	display: block;
  }
  
  .dropdown:hover .dropbtn {
	background-color: #222222;
	color: white;
  }
