/* nav */
.current {
  color: black;
}

.not-current {
  color: gray;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a {
  font-size: 1em;
  text-decoration: none;
  padding: 0 0.5em;
  font-weight: 400;
}

.nav a:hover {
  color: black;
  font-weight: 450;
}

/* post list */
.post-list-title {
  font-size: 1.3em;
  margin-top: 3em;
  margin-bottom: 0;
}
.post-list-title a {
  color: #00355e;
  text-decoration: none;
}
.post-list-title a:hover {
  color: #005698;
  font-weight: 400;
}
.post-time,.post-author {
  display: inline-block;
  margin-bottom: 0.8em;
}
.post-time {
  font-size: 0.8em;
  color: gray;
}
.post-author {
  color: gray;
  margin-left: 1em;
}
.excerpt-read-all {
  display: flex;
  justify-content:start;
}


.read-all a {
  font-size: 1em;
  color: gray;
}

body {
  font-family:system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  width: 80%;
  max-width: 800px;
  margin: 0 auto;
}

/* footer */
.footer-copyright {
  text-align: center;
  font-size: 0.9em;
  color: gray;
  margin-top: 1em;
  margin-bottom: 2em;
}
.footer-copyright a,.footer-copyright p {
  color: gray;
  text-decoration: none;
  font-weight: 300;
}

hr {
  border: 0;
  height: 1px;
  background-color: #ccc;
}

.pagination {
  margin: 3em 0;
  text-align: center;
}

.pagination a,
.pagination p {
  display: inline-block;
  margin: 0 1em;
  font-size: 1em;
}

a {
  color: #2e2e2e;
  text-decoration: none;
}
a:hover {
  color: #2e2e2e;
}

.footer-hr {
  margin-top: 3em;
  margin-bottom: 2em;
}

main {
  margin: auto;
  width: 95%;
}

.footnotes {
  font-size: 0.8em;
  color: gray;
  margin-top: 3em;
}

@media (max-width: 768px) {
  body {
    width: 95%;
  }
}

.site-title {
  font-weight: 300;
}

.site-title a:hover {
  font-weight: 400;
}

.tags {
  font-size: 0.8em;
  background-color: darkgrey;
  color: white;
  border: 0px;
  border-radius: 5px;
  padding: 0.1em 0.5em;
}

.post-list-separator {
  width: 60%;
  margin-right: 40%;
  margin-top: 2.5em;
}

.excerpt {
  max-width: 100%;
}

.post-image {
  max-width: 100%;
  height: auto;
  border-radius: 1em;
}