html, body {
  width: 100%;
  height: 100%;
}

body {
  margin: 0;
  display: grid;
  grid-template-rows: [notice] auto [header] auto [main] 1fr [footer] auto;
  grid-template-columns: 100%;
  font-family: "Open Sans", sans-serif;
  color: rgb(18, 20, 26);
}

#table-container {
  padding: 0.1em 3em;
  overflow: auto;
}

#table-container td {
  padding: 0.5em 1em;
}

#table-container th {
  padding: 0.5em 1em;
}

#table-container thead tr {
  background-color: #dddddd;
}

#table-container tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

#table-container tbody tr:nth-child(even) {
  background-color: #f6f6f6;
}

#table-container table {
  background-color: #ffffff;
  width: 100%;
  border-collapse: collapse;
}

#notice {
  grid-row: notice;
  background-color: #563ACC;
  color: white;
  text-align: center;
}

#notice a {
  color: white;
}

#header {
  grid-row: header;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(/assets/img/site/banner.jpg);
  background-size: 170%;
  background-position-x: center;
  background-attachment: fixed;
  display: grid;
  grid-template-areas: "title" "subtitle" "nav";
  border-bottom: 1px solid rgb(151, 151, 151);
  font-weight: bold;
  color: white;
  text-shadow: black 2px 2px;
}

#heading {
  padding: 1.4em;
}

#title {
  display: grid;
  grid-template-columns: 1fr [name] auto 1fr;
  align-content: center;
  font-size: 1.5em;
}

#subtitle {
  text-align: center;
  font-weight: normal;
}

#name {
  grid-column-start: name;
  text-align: center;
}

#nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1em;
  background-color: rgba(22, 22, 22, 0.5);
}

.navtab {
  display: block;
  padding: 0.7em 0em;
  color: white;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  flex: 1 1 0px;
  width: 100%;
}

#nav a {
  color: white;
}

.activetab {
  background-color: rgba(255, 255, 255, 0.2);
}

#content {
  grid-row: main;
  display: grid;
  grid-template-columns: 1fr [mid] auto 1fr;
}

#innercontent {
  grid-column: mid;
  max-width: 55em;
  min-width: 0;
}

h1, h2, h3, p, .project {
  padding: 0 1.5rem;
}

h1 {
  font-size: 1.5em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 1em;
  border-bottom: 1px solid black;
}

.override_caselock {
  text-transform: initial;
}

p, li {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p {
  font-size: 1em;
  line-height: 1.75em;
}

a {
  word-wrap: break-word;
  color: #35523c;
}

a:visited {
  color: #35523c;
}

a:hover {
  color: #578562;
}

li {
  margin: 1em;
}

.profilePhoto {
  width: 12em;
  max-height: 100%;
  display: block;
  margin: 1em auto;
}

.imgwborder {
  border-radius: 50%;
  border: solid rgb(107, 107, 107) 4px;
}

.largepic {
  width: 15em;
}

.verylargepic {
  width: 25em;
}

.image_figure {
  margin: 1em;
  text-align: center;
}

img {
  max-width: 100%;
  max-height: 15em;
}

figcaption {
  font-size: 1em;
  font-style: italic;
}

.highlighter-rouge {
  background-color: #f4f4f4;
  border: 1px solid #C1C1C1;
  border-radius: 3px;
  padding: 0.1em 0.3em;
  white-space: nowrap;
}

.highlight pre {
  padding: 0.5em 1em;
  overflow: auto;
  border-radius: 3px;
  border: 1px solid #C1C1C1;
  background-color: #f4f4f4;
}

.rouge-table pre {
  border: 0px none black;
  margin: 0;
}

.rouge-table .gutter {
  border-right: 1px solid #C1C1C1;
}

/*
.codesnippet {
  display:block;
  margin: 1em 2em;
  background: rgb(240, 238, 236);
  overflow:scroll;
  text-overflow: clip;
}

.codesnippet code {
  white-space: pre;
  padding: 1em;
}
*/
.project {
  text-align: center;
  border-bottom: 2px solid rgb(231, 231, 231);
}

.project h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0.5em 0;
  grid-area: ptitle;
  padding: initial;
  padding-top: 0.5em;
}

.projectdate {
  padding: 0em;
  color: grey;
  display: inline-block;
}

.project p {
  text-align: left;
  margin: 0px;
  padding: 0px;
}

.project img {
  grid-area: pimg;
  padding-top: 0.5em;
  max-height: 15em;
}

.project .project-desc {
  grid-area: pdesc;
}

.project .project-buttons {
  grid-area: pbuttons;
  padding: 1em 0px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.button {
  display: block;
  color: white;
  background-color: rgb(53, 82, 60);
  margin: 0.5em;
  padding: 0.75em 1.5em;
  text-align: center;
  text-decoration: none;
  flex: 1 1 0px;
  white-space: nowrap;
  box-shadow: gray 3px 3px 6px;
}

.inactiveButton {
  background-color: grey;
}

.button:hover {
  background-color: rgb(87, 133, 98);
  color: white;
}

.button:visited {
  color: white;
}

.button:active {
  background-color: rgb(37, 58, 42);
  box-shadow: black 1px 1px 3px;
}

.inactiveButton:hover {
  background-color: grey;
}

#footer {
  grid-row: footer;
  text-align: center;
  background-color: rgb(22, 22, 22);
  border-top: 1px solid rgb(255, 255, 255);
  color: white;
  font-weight: 300;
  padding: 1em;
  margin-top: 1em;
}

#footer p {
  margin: 0;
}

#footer a {
  color: white;
  text-underline-offset: 0.2em;
}

#social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

#social a {
  padding: 0.5em 0.5em;
  margin: 0 0.5em;
  color: white;
  text-decoration: none;
  line-height: 1em;
  flex: 1 1 0px;
  max-width: 10em;
  min-width: 8em;
}

.socialicon img {
  max-width: 2em;
  padding: 0.5em;
}

.linkedin-icon img {
  max-width: 2.25em;
}

/* 450 px */
@media (min-width: 28em) {
  #header {
    background-size: 120%;
  }
  #title {
    font-size: 2.5em;
  }
  #subtitle {
    font-size: 1.1em;
  }
  #nav {
    flex-direction: row;
    font-size: 1.1em;
  }
  .navtab {
    max-width: 7em;
    width: auto;
    padding: 0.7em 1em;
  }
  .activetab {
    border-left: 2px solid rgb(212, 212, 212);
  }
}
/* 704 px */
@media (min-width: 44em) {
  h1 {
    text-align: left;
  }
  #header {
    background-position-y: -4em;
  }
  #nav, #subtitle {
    font-size: 1.3em;
  }
  #heading {
    padding: 3em;
  }
  .project {
    text-align: left;
    display: grid;
    grid-template-areas: "ptitle ptitle" "pimg pdesc" "pbuttons pbuttons";
  }
  .project h2 {
    margin: 1em 0;
  }
  .project .project-desc {
    padding-left: 2em;
  }
  .project .project-buttons {
    justify-content: flex-end;
  }
  .button {
    flex: initial;
  }
  .profilePhoto {
    float: right;
    margin: 1em;
  }
  img {
    max-height: 20em;
  }
  figcaption {
    font-size: 0.8em;
  }
}
/* 1008px */
@media (min-width: 63em) {
  #header {
    background-position-y: -8em;
    background-size: 100%;
  }
  img {
    max-height: 25em;
  }
}
/* 1440px */
@media (min-width: 89em) {
  #header {
    background-position-y: -12em;
    background-size: 100%;
  }
  img {
    max-height: 25em;
  }
}
.highlight .hll {
  background-color: #ffffcc;
}

.highlight .c {
  color: #8f5902;
  font-style: italic;
} /* Comment */
.highlight .err {
  color: #a40000;
  border: 1px solid #ef2929;
} /* Error */
.highlight .g {
  color: #000000;
} /* Generic */
.highlight .k {
  color: #204a87;
  font-weight: bold;
} /* Keyword */
.highlight .l {
  color: #000000;
} /* Literal */
.highlight .n {
  color: #000000;
} /* Name */
.highlight .o {
  color: #ce5c00;
  font-weight: bold;
} /* Operator */
.highlight .x {
  color: #000000;
} /* Other */
.highlight .p {
  color: #000000;
  font-weight: bold;
} /* Punctuation */
.highlight .cm {
  color: #8f5902;
  font-style: italic;
} /* Comment.Multiline */
.highlight .cp {
  color: #8f5902;
  font-style: italic;
} /* Comment.Preproc */
.highlight .c1 {
  color: #8f5902;
  font-style: italic;
} /* Comment.Single */
.highlight .cs {
  color: #8f5902;
  font-style: italic;
} /* Comment.Special */
.highlight .gd {
  color: #a40000;
} /* Generic.Deleted */
.highlight .ge {
  color: #000000;
  font-style: italic;
} /* Generic.Emph */
.highlight .gr {
  color: #ef2929;
} /* Generic.Error */
.highlight .gh {
  color: #000080;
  font-weight: bold;
} /* Generic.Heading */
.highlight .gi {
  color: #00A000;
} /* Generic.Inserted */
.highlight .go {
  color: #000000;
  font-style: italic;
} /* Generic.Output */
.highlight .gp {
  color: #8f5902;
} /* Generic.Prompt */
.highlight .gs {
  color: #000000;
  font-weight: bold;
} /* Generic.Strong */
.highlight .gu {
  color: #800080;
  font-weight: bold;
} /* Generic.Subheading */
.highlight .gt {
  color: #a40000;
  font-weight: bold;
} /* Generic.Traceback */
.highlight .kc {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Constant */
.highlight .kd {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Declaration */
.highlight .kn {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Namespace */
.highlight .kp {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Pseudo */
.highlight .kr {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Reserved */
.highlight .kt {
  color: #204a87;
  font-weight: bold;
} /* Keyword.Type */
.highlight .ld {
  color: #000000;
} /* Literal.Date */
.highlight .m {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number */
.highlight .s {
  color: #4e9a06;
} /* Literal.String */
.highlight .na {
  color: #c4a000;
} /* Name.Attribute */
.highlight .nb {
  color: #204a87;
} /* Name.Builtin */
.highlight .nc {
  color: #000000;
} /* Name.Class */
.highlight .no {
  color: #000000;
} /* Name.Constant */
.highlight .nd {
  color: #5c35cc;
  font-weight: bold;
} /* Name.Decorator */
.highlight .ni {
  color: #ce5c00;
} /* Name.Entity */
.highlight .ne {
  color: #cc0000;
  font-weight: bold;
} /* Name.Exception */
.highlight .nf {
  color: #000000;
} /* Name.Function */
.highlight .nl {
  color: #f57900;
} /* Name.Label */
.highlight .nn {
  color: #000000;
} /* Name.Namespace */
.highlight .nx {
  color: #000000;
} /* Name.Other */
.highlight .py {
  color: #000000;
} /* Name.Property */
.highlight .nt {
  color: #204a87;
  font-weight: bold;
} /* Name.Tag */
.highlight .nv {
  color: #000000;
} /* Name.Variable */
.highlight .ow {
  color: #204a87;
  font-weight: bold;
} /* Operator.Word */
.highlight .w {
  color: #f8f8f8;
  text-decoration: underline;
} /* Text.Whitespace */
.highlight .mf {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number.Float */
.highlight .mh {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number.Hex */
.highlight .mi {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number.Integer */
.highlight .mo {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number.Oct */
.highlight .sb {
  color: #4e9a06;
} /* Literal.String.Backtick */
.highlight .sc {
  color: #4e9a06;
} /* Literal.String.Char */
.highlight .sd {
  color: #8f5902;
  font-style: italic;
} /* Literal.String.Doc */
.highlight .s2 {
  color: #4e9a06;
} /* Literal.String.Double */
.highlight .se {
  color: #4e9a06;
} /* Literal.String.Escape */
.highlight .sh {
  color: #4e9a06;
} /* Literal.String.Heredoc */
.highlight .si {
  color: #4e9a06;
} /* Literal.String.Interpol */
.highlight .sx {
  color: #4e9a06;
} /* Literal.String.Other */
.highlight .sr {
  color: #4e9a06;
} /* Literal.String.Regex */
.highlight .s1 {
  color: #4e9a06;
} /* Literal.String.Single */
.highlight .ss {
  color: #4e9a06;
} /* Literal.String.Symbol */
.highlight .bp {
  color: #3465a4;
} /* Name.Builtin.Pseudo */
.highlight .vc {
  color: #000000;
} /* Name.Variable.Class */
.highlight .vg {
  color: #000000;
} /* Name.Variable.Global */
.highlight .vi {
  color: #000000;
} /* Name.Variable.Instance */
.highlight .il {
  color: #0000cf;
  font-weight: bold;
} /* Literal.Number.Integer.Long */

/*# sourceMappingURL=main.css.map */