html {
  margin: auto;
  max-width: 86ch;
  font-size: 1.3rem;
  background-image: url('/paper.png');
  background-color: #efefef;
  /* border-left: 2px solid #dedede;
  border-right: 2px solid #dedede; */
  /* height: 98%; */
}

.title,
.subtitle {
  font-family: 'Courier New', Courier, monospace;
  text-align: center;
}

h1 {
  background-color: white;
  border-radius: 5px;
}

.subtitle {
  font-size: smaller;
}

.title {
  margin-bottom: 0;
}

nav {
  display: flex;
  justify-content: space-around;
  background-color: white;
  border-radius: 5px;
  font-family: 'Courier New', Courier, monospace;

  & a {
    text-decoration-style: dashed;
  }

  & .active {
    color: green;
    text-decoration: underline double black;
    font-weight: bold;
  }

}

.navlink {
  padding: 10px;
}

.content {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.3rem;
  padding: 0 3px;
  /* text-align: center; */
}


a,
a:visited,
a:active {
  color: red;
}

a:hover {
  color: #cc0000;
}


.headshot {
  width: 60%;
  padding-right: 15px;
  float: left;
}

@media (min-width: 756px) {
  .headshot {
    width: 40%;
  }
}

.table-container {
  overflow-x: scroll;
}

/* copied from https://github.com/sindresorhus/github-markdown-css/blob/bedb4b771f5fa1ae117df597c79993fd1eb4dff0/github-markdown-light.css#L563-L588 */
table th {
  font-weight: 600;
}

table th,
table td {
  padding: 6px 13px;
}

table td>:last-child {
  margin-bottom: 0;
}

table tr {
  background-color: #ffffff;
  border-top: 1px solid #d1d9e0b3;
}

table tr:nth-child(2n) {
  background-color: #f6f8fa;
}

table img {
  background-color: transparent;
}
