body {
  font-family: Cantarell, Helvetica, Arial, sans-serif;
  color: rgb(21, 20, 26);
  font-size: 20px;
  line-height: 1.6em;
}

h1 {
  font-size: 1.6em;
  line-height: 1.6em;
}

h2, h3 {
  font-size: 1.3em;
  line-height: 1.6em;
}

h1::before,
h2::before,
h3::before,
.title::before {
  content: '# ';
  color: red;
  line-height: 0;
}

h2::before {
  content: '## ';
}

h3::before {
  content: '### ';
}

a {
  color: rgb(21, 20, 26);
  border-bottom: 3px solid red;
  text-decoration: none;
}

section a, .comment a {
  color: navy;
}

a:hover {
  background-color: navy;
  color: white;
}

hr {
  color: navy;
  height: 2px;
  border-width: 3px;
  border-style: solid;
}

section hr {
  color: #d7d7d7;
  height: 0px;
  border-width: 1px;
}

.meta-data {
  font-size: 0.65em;
}

body {
  max-width: 30em;
  margin: 0 auto;
  padding: 1em;
}

.inline-list, .inline-nav ul {
  display: inline-block;
  list-style: none;
  padding: 0;
  margin: 0;
}
.inline-list li, .inline-nav li, .inline-nav {
  display: inline-block;
}

.left-right-align {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nowrap {
  white-space: nowrap;
}

.weight-light {
  font-weight: lighter;
}

.comment {
  font-weight: bold;
  padding: 1em;
}

.other-posts > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

footer {
  margin-top: 3em;
  margin-bottom: 0;
}

blockquote {
  border-left: 2px solid black;
  border-radius: 0.3em;
  margin: 0;
  padding-left: 1em;
}

figure {
  margin: 0;
}

figure img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

article img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

figure h4 {
  font-size: 0.65em;
  margin: 0;
  margin-bottom: 1em;
  padding: 0;
}

figure h4::before {
  content: '↳ ';
  line-height: 0;
}

code {
  border: 1px solid rgb(250,200,200);
	background-color: rgb(250, 240, 240);
	padding: 0 0.2em;
	line-height: 1.4em;
	font-size: 0.7em;
}

.highlight pre code {
  border: 0;
  padding: 0;
}

.highlight {
  position: relative;
}

.highlight pre {
  overflow: scroll;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1em;
	background-color: rgb(250, 240, 240);
}

.highlight pre code::before {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.2em;
}

.highlight pre code[class*='language-C']::before {
  content: 'C';
  background: cyan;
  color: royalblue ;
}

.highlight pre code[class=language-javaScript]::before,
.highlight pre code[class="language-js"]::before  {
  content: "js";
  background: #f7df1e;
  color: black;
}

.highlight pre code[class*='language-yml']::before,
.highlight pre code[class*='language-yaml']::before {
  content: 'yaml';
  background: #f71e6a;
  color: white;
}

.highlight pre code[class*='language-shell']::before,
.highlight pre code[class*='language-bash']::before,
.highlight pre code[class*='language-sh']::before {
  content: 'shell';
  background: green;
  color:white
}

.highlight pre code[class*='language-json']::before {
  content: 'json';
  background: dodgerblue;
  color: #000000
}

.highlight pre code[class*='language-python']::before,
.highlight pre code[class*='language-py']::before {
  content: 'py';
  background: blue;
  color: yellow ;
}

.highlight pre code[class*='language-md']::before,
.highlight pre code[class*='language-md']::before {
  content: 'Markdown';
  background: royalblue;
  color: whitesmoke ;
}
