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

header {
  text-align: center;
}

header .logo {
  max-width: 775px;
  margin: 0px auto;
}

header .logo img {
  margin-top: -7px;
  margin-left: 15px;
}

header h2 a {
  border: none;
  font-size: 55px;
  letter-spacing: 2px;
  color: #222;
  text-decoration: none;
  font-family: 'Times New Roman', serif;
}

header h2 {
  display: inline-block;
  vertical-align: 20px;
  line-height: 1.5em;
}

header h2 a:hover {
  text-decoration: underline;
}

header p {
  margin: 0;
}

header .top-nav {
  max-width: 775px;
  margin: 0px auto;
}

header .top-nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  padding: 0;
  align-items: center;
  justify-content: center;
}

header .top-nav ul li {
  margin: 0 10px;
}

h5.date {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: normal;
}

h5.tags {
  margin-top: 5px;
  font-weight: normal;
  font-size: 16px;
}


body {
  font-size: 19px;
  line-height: 31.4px;
  color: #222;
  background-color: #fffafa;
  margin: 0;
  padding: 2em 1em 0;
  font-family: Georgia, serif;
  overflow-wrap: break-word;
  word-break: break-word;
}

body pre {
  display: inline-block;
  font-size: 13px;
  white-space: pre-wrap;
  width: 100%;
  border-top: 2px dashed #222;
  background-color: #f6f2f2;
  padding: 0 1em 1em;
}

body p code {
  font-size: 14px;
  background-color: #F0F0F0;
}

section.main {
  margin: 40px auto;
  max-width: 775px;
  width: 100%;
  border-top-style: dashed;
  border-top-width: 2px;
  border-top-color: #222;
  padding-top: 40px;
}

section.main .post-bottom {
  margin-bottom: 20px;
}

section.main .post-bottom .bottom-nav {
  margin: 10px 0 10px;
}

.about {
  margin: 12px 0 22px;
  padding: 5px 10px;
  background-color: #EEE;
  border-top: 5px solid #fa6900;
}

.about p {
  font-size: 16px;

}

.link-list {
  padding: 0;
  margin: 0;
}

.link-list li {
  padding: 0 0 15px;
  margin: 0;
  list-style-type: none;
}

.year-header {
  font-size: 22px;
}

footer {
  font-size: 13px;
}

blockquote {
  padding: 2px 12px;
  font-style: italic;
}

blockquote blockquote {
  background-color: #E5E5E5;
  padding: 3px 12px;
}

.hidden {
    visibility: hidden;
}

.comments {
  border-top-style: dashed;
  border-top-width: 2px;
  border-color: #222;
  margin-top: 40px;
}


.comments textarea {
    width: 100%;
}

.comments input[type="text"], .comments input[type="email"] {
    width: 50%;
    min-width: 100px;
}

.comments label {
    font-family: monospace;
    display: block;
}

.comments .comment {
  background: #F5F5F5;
  padding: 1px 15px;
  border-top: 5px solid #fa6900;
  margin-bottom: 20px;
}

.comments .comment p:first-child {
  font-size: smaller;
  margin-bottom: 0;
}

.comments .comment .author {
  margin: 0;
  font-size: large;
}

@media (max-width: 740px) {
  header .top-nav ul {
    flex-direction: column;
  }

  blockquote {
    padding: 0;
  }
}

