/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

s {
  text-decoration: none;
}

/* Styles */

* {
  font-family: -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: #212121;
}

.container {
  width: 720px;
  margin: 0px auto;
}

@media screen and (max-width: 850px) {
  .container {
    max-width: 85%;
  }
}

header {
  text-align: center;
  font-weight: bold;
  margin-top: 1.5em;
  margin-bottom: 2.8em;
}

header a {
  text-decoration: none;
}

footer {
  text-align: center;
  margin-top: 4em;
  margin-bottom: 2em;
}

footer a {
  text-decoration: none;
}

.post-list h1 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.8em;
}

.post-list ul {
  margin-bottom: 1.4em;
}

.post-list li {
  margin-bottom: 0.25em;
  line-height: 1.4em;
}

.post-list a {
  text-decoration: none;
}

.post-list .post-list-date {
  width: 70px;
  float: left;
}

.post-list .post-list-title {
  overflow: hidden;
  display: block;
}

.post-list a:hover .post-list-title {
  text-decoration: underline;
}

.title {
  text-align: center;
  font-weight: bold;
  font-size: 2em;
  margin-bottom: 0.3em;
  line-height: 1.2em;
}

.title-date {
  text-align: center;
  margin-bottom: 3em;
}

.content strong {
  font-weight: bold;
}

.content em {
  font-style: italic;
}

.content ul {
  list-style: square;
  margin-bottom: 1.2em;
}

.content li {
  margin-bottom: 0.2em;
  line-height: 1.5em;
}

.content li li {
  margin-left: 2em;
}

.content h1 {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 0.8em;
  margin-top: 2.4em;
}

.content p {
  line-height: 1.5em;
  margin-bottom: 1.2em;
}

.content img {
  max-width: 90%;
  margin: 0px auto 1.6em;
  display: block;
}

.content video {
  margin: 0px auto 1.6em;
  display: block;
}

.content .me-img {
  border-radius: 50%;
  max-width: 30%;
  border: 2px solid #eee;
  margin: 2.6em auto 2.6em;
}

.content s {
  display: block;
  text-align: center;
  font-style: italic;
}

hr {
  background-color: #d1d1d1;
  height: 1px;
  border: 0;
  margin-bottom: 1.6em;
  width: 50%;
}

/* Code */

pre {
  margin-bottom: 1.5em;
  background-color: #1a1a1a;
  padding: 16px 0;
  border-radius: 16px;
  overflow-x: auto;
  margin-left: -60px;
  margin-right: -60px;
}

@media screen and (max-width: 850px) {
  pre {
    margin-left: -5%;
    margin-right: -5%;
  }
}

pre code {
  font-family: monospace !important;
  display: block;
  padding: 0 20px;
  color: #a9bcbc;
  line-height: 1.3em;
  font-size: 14px;
  overflow-x: auto;
  white-space: pre;
  -webkit-overflow-scrolling: touch;
}

p code {
  font-family: monospace !important;
  padding: 1px 4px;
  border-radius: 3px;
  background-color: #e9e9e9;
}

li code {
  font-family: monospace !important;
  padding: 1px 4px;
  border-radius: 3px;
  background-color: #e9e9e9;
}

h1 code {
  font-family: monospace !important;
}

pre code .keyword {
  font-family: monospace !important;
  color: #e73289;
}

pre code .type {
  font-family: monospace !important;
  color: #8281ca;
}

pre code .call {
  font-family: monospace !important;
  color: #348fe5;
}

pre code .property {
  font-family: monospace !important;
  color: #21ab9d;
}

pre code .number {
  font-family: monospace !important;
  color: #db6f57;
}

pre code .string {
  font-family: monospace !important;
  color: #fa641e;
}

pre code .comment {
  font-family: monospace !important;
  color: #6b8a94;
}

pre code .dotAccess {
  font-family: monospace !important;
  color: #92b300;
}

pre code .preprocessing {
  font-family: monospace !important;
  color: #b68a00;
}

@media (prefers-color-scheme: dark) {
  * {
    color: #e9e9e9;
  }
  html {
    background-color: #212121;
  }
  hr {
    background-color: #595959;
  }
  p code {
    color: #e9e9e9;
    background-color: #444444;
  }
  li code {
    color: #e9e9e9;
    background-color: #444444;
  }
}
