html {
  font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
hr,
dl,
dd,
ol,
ul,
figure {
  margin: 0;
  padding: 0;
}

body {
  z-index: initial;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #000000;
  background-color: #e0eeff;
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-content {
  flex: 1 0 auto;
  display: block;
}
.page-footer {
  flex-shrink: 0;
}

strong {
  font-weight: 500;
}

a {
  color: #1756a9;
  font-weight: 400;
  text-decoration: none;
}

@media (hover: hover) {
  a:hover {
    text-decoration: underline;
  }
}

.bio {
  max-width: -webkit-calc(80% - (30px / 2));
  max-width: calc(80% - (30px / 2));
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-title {
  font-size: 1.65em;
  font-weight: 700;
  border-bottom: thin solid #000000;
  margin: 30px 0 0 0;
  text-align: left;
}

.home-head {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
}

.post-head {
  font-weight: 500;
  font-size: 20px;
  margin-top: 30px;
  text-decoration: underline;
}

.sitemap-head {
  font-weight: 500;
  font-size: 20px;
  margin-top: 30px;
  text-decoration: underline;
}

.link-path {
  font-size: 0.75em;
}

.link-path,
.link-path a {
  font-weight: 300;
  color: #000000;
  text-align: left;
}

.sitemap-content a {
  font-weight: 500;
}

.sitemap-content .group-text a {
  color: #9b3022;
  font-weight: 700;
}

/* text size adjustment */
@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
  .bio {
    max-width: -webkit-calc(100% - (30px / 2));
    max-width: calc(100% - (30px / 2));
    text-align: left;
  }
  .sitemap-head {
    font-size: 18px;
  }
}

.bio-body {
  margin: 5px;
  padding: 5px;
}

.wrapper {
  max-width: 1024px;
  margin: 0 auto;
}

.sitemap-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 0 0 0;
}

.sitemap-content {
  max-width: -webkit-calc(100% - (30px / 2));
  max-width: calc(100% - (30px / 2));
  margin: 0 auto;
}

.posts-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 45px 0 0 0;
}

.posts-content {
  max-width: -webkit-calc(100% - (30px / 2));
  max-width: calc(100% - (30px / 2));
  margin: 0 auto;
}

.post-wrapper {
  max-width: 900px;
  margin: 0 auto;
  /* padding: 45px 0 0 0; */
}

.post-content {
  max-width: -webkit-calc(100% - (30px / 2));
  max-width: calc(100% - (30px / 2));
  margin: 30px auto 0;
}

@media screen and (max-width: 1080px) {
  .wrapper {
    max-width: -webkit-calc(100% - (60px / 2));
    max-width: calc(100% - (60px / 2));
  }
}

@media screen and (max-width: 960px) {
  .sitemap-wrapper {
    max-width: -webkit-calc(100% - (60px / 2));
    max-width: calc(100% - (60px / 2));
  }
  .posts-wrapper {
    max-width: -webkit-calc(100% - (60px / 2));
    max-width: calc(100% - (60px / 2));
  }
  .post-wrapper {
    max-width: -webkit-calc(100% - (60px / 2));
    max-width: calc(100% - (60px / 2));
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
ul,
ol,
dl,
figure,
.highlight {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

hr {
  display: block;
  -webkit-margin-before: 0.5em;
  -webkit-margin-after: 0.5em;
  -webkit-margin-start: auto;
  -webkit-margin-end: auto;
  border-style: inset;
  border-width: 1px;
}

figure > img {
  display: block;
}

figcaption {
  font-size: 14px;
}

ul,
ol {
  margin-left: 30px;
}

li > ul,
li > ol {
  margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
}

blockquote {
  color: #828282;
  border-left: 4px solid #e8e8e8;
  padding-left: 15px;
  font-size: 18px;
  letter-spacing: -1px;
  font-style: italic;
}

blockquote > :last-child {
  margin-bottom: 0;
}

.unselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.terminal-prompt {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-family: "Roboto Mono", monospace;
}

.command-markdown {
  background: #1b1f230d;
  border-radius: 6px;
  padding: 0.2em 0.4em;
  font-size: 75%;
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-weight: 400;
}

.group-text {
  white-space: nowrap;
}

.img-center {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

pre {
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  font-size: 0.9em;
}
pre,
code {
  font-weight: 400;
}