body {
  font-family: 'Droid Sans', 'Open Sans', Sans-Serif;
  background: #efefef;
  margin: 1em auto;
  margin-bottom: 50px;
  max-width: 50em;
	padding:0 .62em;
  font-size: 16px;
  line-height: 1.6;  
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

code {
  color: lightgray;
  background-color: black;
  font-family: monospace;
}

pre {
  background: #000000;
  padding: 1px;
  border-radius: 1px;
  overflow-x: auto; /* adds horizontal scroll if code is long */
}


blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

figure {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-style: italic;
	font-size: smaller;
	text-align: center;
}

::selection {
  background-color: #000000; /* Highlight background color */
  color: white; /* Text color */
}

a:link {
  text-decoration: underline;
  color: black;
}
a:hover {
  text-decoration: none;
  color: black;
}
a:active {
  text-decoration: underline;
}
a:visited {
  text-decoration: none;
  color: black;
  }

hr {
	background:lightgrey;
	height:1px;
	border:none;
}

h1 {
	font-size: 28px;
	padding: 20px 0px 0px;
}

h2 {
	font-size: 24px;
	padding: 20px 0px 0px;
}

h3 {
	font-size: 18px;
	padding: 20px 0px 0px;
}

footer {
  padding: 24px 0px 60px;
  color: #000000;
  font-size: smaller;
}
  
.border {   
  border-width: 16px;   
  border-color: transparent;   
  border-style: solid; 
} 

/* Tables */
table, th, td {
  border: 1px solid gray;
}

.table-wrapper {
    display: flex;
    justify-content: center;
}

/* Photo Gallery Stuff */
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

header {
	padding: 40px 0px 10px;
	font-size: 18px;
}

/* Nav bar */

       .nav-links > a {
      padding: 13px 10px 13px 10px;
      text-decoration: none;
      color: #000000;
      font-size: 18px;
    }

@media (prefers-color-scheme: dark) {
body {
    color: #eee;
    background-color: #16161D;
}
	a:link {
  text-decoration: underline;
  color: white;
}
a:hover {
  text-decoration: none;
  color: white;
}
a:active {
  text-decoration: underline;
}
a:visited {
  text-decoration: none;
  color: white;
  }
blockquote {
  background: #000000;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
}

::selection {
  background-color: white; /* Highlight background color */
  color: black; /* Text color */
}

.nav-links > a {
  padding: 13px 10px 13px 10px;
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  }
