body {
  display:flex;
  flex-direction:column;
  margin:0;
  min-height:100vh;
  background:#212121;
  color: #E0E0E0;
  font-family: 'Roboto', sans-serif;
  line-height:1.4em;
}

a {
  color: #9E9E9E;
}

h1 {
  font-size: 3.27rem;
  font-weight: 600;
  line-height: initial;
}

h2 {
  font-size: 2.02rem;
  font-weight: 500;
  line-height: initial;
}

h3 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: initial;
}

p, li {
  font-size: 1rem;
  font-weight: 300;
}

p>strong {
  font-weight: 500;
}

li>strong {
  font-weight: 500;
}

blockquote {
  margin: 3% 10%;
  padding: 1% 2%;
  background: #424242;
  border-left: 0.2em solid #9E9E9E;
}

/* header css */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #263238;
  padding: 0.05em 0;
  font-weight: 300;
  text-align: right;
}

.header>a {
  margin-right: 8%;
  padding: 0 0.7rem;
  background: #FFB300;
  color: #212121;
  text-decoration: none;
}

/* content css */
.content {
  flex: 1;
  margin: 0 25%;
}

@media (max-width: 1023px) {
  .content {
    margin: 0 10%;
  }
}

@media (max-width: 767px) {
  .content {
    margin: 0 2%;
  }
}

/* footer css */
.footer {
  padding: 1.618rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.618em;
  justify-content: center;
  border-top: .2em dotted #424242;
}

/* Code Block CSS */
code {
  color: #F57F17;
}

.code-container {
  border-left:.1618rem solid #F57F17;
  background:#263238;
  margin: 1em 0;
}

.code-title {
  text-align:right;
}

.code-title:empty {
  padding-top:0.618em;
}

.code-title:not(:empty) {
  color:#E65100;
  background:#37474F;
  padding:.309em 1.618em .309em 0;
  font-weight:300;
}

.code-block {
  display:flex;
  padding:0 0 .618em 0;
}

.code-line-numbers {
  display:flex;
  flex-direction:column;
  text-align:right;
  padding-left:.2rem;
  margin-right:0.618em;
  user-select:none;
  align-items:center;
  color:#757575;
}

.code-block>pre {
  margin:0;
  overflow-x:auto;
}

.code-block>pre>code {
  font-size:1rem;
  font-weight:200;
  line-height:1.618rem;
  color:#ECEFF1;
}

.code-line-numbers>span {
  font-size:1rem;
  font-weight:500;
  line-height:1.618rem;
}

/* Loader CSS */
.item-loader {
  display:block;
  width:0.6rem;
  height:1.6rem;
  background:#F5F5F5;
  animation: blink 1.618s linear infinite;
}

@keyframes blink {
  0%, 50%, 100% {
    opacity:1;
  }
  25%, 75% {
    opacity:0;
  }
}

/* override hljs */
pre code.hljs {
  display: initial;
  overflow-x: initial;
  padding: initial;
}

.hljs {
  background: initial;
}
