@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Roboto+Slab:wght@400;700&family=Source+Code+Pro&family=Raleway:wght@400;700&display=swap');
@import url(reset.css);

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, input, select, textarea {
  color: black;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13pt;
  font-weight: 400;
  line-height: 1.65;
}

a {
  border-bottom: dotted 1px;
  color: #E7E7E0;
  text-decoration: none;
}

a:hover {
  border-bottom-color: #FFFDE2;
  color: #FFFDE2 !important;
}

a:hover strong {
  color: inherit;
}

a:visited {
  color: #CDD7FF;
}

a:active {
  color: #FFFDE2;
}

strong, b {
  font-weight: 600;
}

em, i {
  font-style: italic;
}

p {
  margin: 0 0 2em 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Raleway, Arial, Helvetica, sans-serif;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 (2em * 0.5) 0;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  text-decoration: none;
  border-bottom: 0;
}

h1, h2 {
  text-align: center;
}

h1 {
  font-size: 2em;
  padding: 1em 0 0.75em 0;
}

h2 {
  font-size: 1.75em;
  padding: 0.5em 0 0.5em 0;
}

h3 {
  font-size: 1.25em;
}

h4 {
  font-size: 1.1em;
}

h5 {
  font-size: 0.9em;
}

h6 {
  font-size: 0.7em;
}

sub {
  font-size: 0.8rem;
  position: relative;
  top: 0.5rem;
}

sup {
  font-size: 0.8rem;
  position: relative;
  top: -0.5rem;
}

blockquote {
  border-left: solid 3px rgba(210,215,217,0.75);
  font-style: italic;
  margin: 0 0 2em 0;
  padding: (2em / 4) 0 (2em / 4) 2em;
}

code {
  background: transparentize(#e6ebed, 0.75);
  color: #000000;
  border-radius: 0.375em;
  border: solid 1px rgba(210,215,217,0.75);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  margin: 0 0.25em;
  padding: 0.25em 0.65em;
}

pre {
  -webkit-overflow-scrolling: touch;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9em;
  margin: 0 0 2em 0;
}

pre.code {
  display: block;
  line-height: 1.75;
  padding: 1em 1.5em;
  overflow-x: auto;
}

hr {
  border: 0;
  border-bottom: solid 1px rgba(210,215,217,0.75);
  margin: 2em 0;
}

hr.major {
  margin: (2em * 1.5) 0;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.align-right {
  text-align: right;
}

.large {
  font-size: 110%;
}

.x-large {
  font-size: 120%;
}

.small {
  font-size: 92%;
}

.x-small {
  font-size: 86%;
}

ol {
  list-style: decimal;
  margin: 0 0 2em 0;
  padding-left: 1.25em;
}

ol li {
  padding-left: 0.25em;
}

ul {
  list-style: disc;
  margin: 0 0 2em 0;
  padding-left: 1em;
}

ul li {
  padding-left: 0.5em;
}

ul.alt {
  list-style: none;
  padding-left: 0;
}

ul.alt li {
  border-top: solid 1px rgba(210,215,217,0.75);
  padding: 0.5em 0;
}

ul.alt:first-child {
  border-top: 0;
  padding-top: 0;
}

dl {
  margin: 0 0 2em 0;
}

dl dt {
  display: block;
  font-weight: 600;
  margin: 0 0 (2em * 0.5) 0;
}

dl dd {
  margin-left: 2em;
}

.tags li {
  list-style-type: none;
  display: inline;
  margin: 0.25em;
  white-space: nowrap;
}

body {
  background-color: #909d0c;
  margin: 0;
  color:#FFFFFF;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
}

#header {
  height: 300px;
}

#header>div {
  height: 300px;
}

#header .logo {
  margin-left: 360px;
  margin-top: 110px;
  font-size: 22pt;
  font-weight: 700;
  font-family: Raleway;
  color: #ffffff;
  text-decoration: none;
}

#wrapper {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
}

#main {
  flex-grow: 20;
  margin: 0;
  padding: 2em;
  background-color: #4D590E;
}

#sidebar {
  margin-top: -2em;
  width: 15em;
  flex-shrink: 0;
  background-color: #4D590E;
  padding: 1em;
}

#sidebar>.inner {
  background: linear-gradient(180deg, #909d0c, #909d0c 75%, #4D590E);
  padding: 1em 1em 4em 1em;
}

#sidebar .links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#sidebar .links>li {
  display: block;
  margin: 0;
  border: 1px solid #404f19;
  background: linear-gradient(180deg, #525f1e, #878f5d);
}

#sidebar .links>li:hover {
  background: linear-gradient(180deg, #5d610c, #7e710c);
}

#sidebar .links>li>a {
  display: inline-block;
  width: 100%;
  padding-left: 1em;
}

#copyright {
  font-size: 92%;
  font-weight: 300;
}

.directory {
  list-style-type: none;
  padding: 0;
}

.directory>li {
  margin: 0 0 2em 0;
  padding: 0;
}

.directory-person {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.directory-person>li {
  margin: 0;
  padding: 0;
}

.directory-name {
  font-family: Raleway, Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.directory-email>a {
  margin-left: 2em;
}

.directory-email>a::before {
  content: '📧 ';
}
