body {
  font-family: "Segoe UI", "Helvetica Neue", "Helvetica, Arial", "sans-serif";
  color: #555;
  margin: 0;
}
a {
  color: #337ab7;
  text-decoration: none;
}
a:focus,
a:hover {
  color: #23527c;
  text-decoration: underline;
}
app-container header {
  background-color: #428bca;
  padding: 14px 14px;
}
app-container header a {
  font-size: 20px;
  font-weight: 500;
  color: #cdddeb;
  text-decoration: none;
  padding: 0 0;
  padding-right: 20px;
}
app-container main-title {
  padding: 28px 14px;
}
app-container main-title h3 {
  margin: 0;
  font-weight: normal;
  font-size: 20px;
  color: #333;
}
app-container main-title p {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}
app-container main {
  display: flex;
  flex-direction: column;
}
app-container main search-description {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
app-container main blog-post-previews {
  display: flex;
  flex-direction: column;
}
app-container main blog-post {
  border-top: 2px solid black;
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}
app-container main blog-post title1 {
  font-size: 1.2em;
  color: black;
}
app-container main blog-post title2 {
  font-size: 1.6em;
  font-weight: 500;
  color: black;
}
app-container main blog-post tags {
  padding-top: 10px;
  padding-bottom: 10px;
}
app-container main blog-post tags timestamp {
  display: inline;
}
app-container main blog-post article-content p {
  margin: 0 0 20px;
}
app-container main articles-previews-footer {
  display: grid;
  grid-template-columns: auto 99fr auto;
  margin-bottom: 20px;
}
app-container main articles-previews-footer a {
  display: block;
  height: 45px;
  width: 140px;
  border: 1px solid gray;
  border-radius: 5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
app-container main articles-previews-footer a:focus,
app-container main articles-previews-footer a:hover {
  background-color: #eee;
  text-decoration: none;
}
app-container main articles-previews-footer .prev-link {
  grid-column: 1;
  grid-row: 1;
}
app-container main articles-previews-footer .next-link {
  grid-column: 3;
  grid-row: 1;
}
app-container main about h2 {
  margin: 0;
  font-weight: 400;
}
app-container sidebar {
  display: flex;
  flex-direction: column;
}
app-container sidebar h4 {
  margin: 0;
  margin-bottom: 8px;
  font-weight: normal;
  color: #333;
}
app-container sidebar bio {
  background-color: #f5f5f5;
  padding: 14px;
  display: flex;
  flex-direction: column;
}
app-container sidebar bio .sidebar-portrait {
  width: 100%;
  height: auto;
  align-self: center;
  margin-bottom: 8px;
}
app-container sidebar bio p {
  margin: 0;
}
app-container sidebar archive {
  margin-top: 28px;
}
app-container sidebar archive ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
app-container sidebar archive li {
  list-style: none;
}
app-container sidebar other-links {
  margin: 28px 0;
}
app-container sidebar other-links ol {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
app-container sidebar other-links ol li {
  list-style: none;
}
app-container footer {
  background-color: #f9f9f9;
  border-top: 2px solid #e5e5e5;
  padding: 36px 8px;
  display: grid;
}
app-container footer div {
  display: block;
  align-self: center;
  justify-self: center;
  color: #337ab7;
  text-decoration: none;
  cursor: pointer;
}
app-container footer div:focus,
app-container footer div:hover {
  color: #23527c;
  text-decoration: underline;
}
@media (min-width: 820.001px) and (orientation: landscape) {
  app-container {
    width: 100%;
    margin: 0 0;
    display: grid;
    grid-template-columns: 1fr fit-content(760px) auto 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas: ". header     header        ." /*prevent format*/ ". main-title main-title    ." /*prevent format*/ ". main       sidebar       ." /*prevent format*/ ". footer     footer        ." /*prevent format*/;
  }
  app-container header {
    grid-area: header;
  }
  app-container header-left {
    content: "";
    background-color: #428bca;
    grid-column: 1;
    grid-row: 1;
  }
  app-container header-right {
    content: "";
    background-color: #428bca;
    grid-column: 4;
    grid-row: 1;
  }
  app-container main-title {
    grid-area: main-title;
  }
  app-container main {
    padding: 0 40px 0 14px;
    grid-area: main;
  }
  app-container sidebar {
    grid-area: sidebar;
    width: 240px;
  }
  app-container footer {
    grid-area: footer;
  }
  app-container footer-left {
    content: "";
    background-color: #f9f9f9;
    border-top: 2px solid #e5e5e5;
    grid-column: 1;
    grid-row: 4;
  }
  app-container footer-right {
    content: "";
    background-color: #f9f9f9;
    border-top: 2px solid #e5e5e5;
    grid-column: 4;
    grid-row: 4;
  }
}
@media (max-width: 820px), (orientation: portrait) {
  app-container {
    display: flex;
    flex-direction: column;
  }
  app-container main {
    padding: 0 14px 0 14px;
    border-bottom: 2px solid black;
  }
  app-container sidebar {
    padding: 0 14px 0 14px;
    max-width: 240px;
    align-self: center;
  }
  app-container header-left {
    display: none;
  }
  app-container header-right {
    display: none;
  }
  app-container footer-left {
    display: none;
  }
  app-container footer-right {
    display: none;
  }
}
article-content img.image-in-article-full-page {
  width: 100%;
  margin-bottom: 1em;
  border: 1px solid gray;
}
article-content pre.article-code-hljs {
  padding-top: 0px;
  padding-bottom: 5px;
}
article-content pre.article-code-hljs code {
  padding-top: 0px;
  padding-bottom: 0px;
}
article-content .direct-speech-block {
  display: block;
  background-color: #e6e6e6;
  border-left: solid 2px #2081bb;
  padding-left: 5px;
}
article-content .direct-speech-response {
  text-align: right;
}
article-content .gray-table {
  background-color: #e6e6e6;
  border-spacing: 0;
  border-collapse: collapse;
}
article-content .gray-table td {
  border: solid 2px white;
  padding-left: 3px;
  padding-right: 3px;
}
article-content h1,
article-content .article-body .h1,
article-content h2,
article-content .article-body .h2,
article-content h3,
article-content .article-body .h3,
article-content h4,
article-content .article-body .h4,
article-content h5,
article-content .article-body .h5,
article-content h6,
article-content .article-body .h6 {
  margin-top: 1em;
  font-weight: 400;
}
article-content .external-link {
  position: relative;
  top: 1px;
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  width: 10px;
  height: 10px;
}
article-content pre {
  display: block;
  word-break: break-all;
  word-wrap: break-word;
  color: #444;
  background-color: #f5f5f5;
  border: 1px solid #ccc;
  border-radius: 5px;
}
article-content pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
