/* Edited from https://gist.github.com/JoeyBurzynski/617fb6201335779f8424ad9528b72c41 */

html {
  font-family: sans-serif;
  font-size: 1.4rem;
  line-height: 1.75;
  line-height: 1.5;
  margin: auto;
  max-width: 70ch;
  padding: 2em 1em;
  background-color: #131516;
  color: #d8d4cf;
}

img {
  width: 100%;
}

/* Optional 100 more bytes */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1em 0 1em;
}

p,
ul,
ol {
  color: #d8d4cf;
  margin-bottom: 1em;
}

/* CSS Simple Pre Code */
pre {
  background-color: #222;
  color: white;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  overflow-x: auto;
  padding: 1rem;
  white-space: pre;
  font-size: 0.8rem;
  counter-reset: line;
}

code {
  overflow-x: auto;
}

:not(pre) > code {
  font-weight: bold;
}

.header h1 {
  margin: 0 0 1.5rem;
  font-size: 1.8rem;
}

#content h4 {
  margin-top: 1.5rem;
  line-height: 1.4;
}

a {
  color: #fe4a3c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.github-fork-ribbon:before {
  background-color: #fe4a3c;
}
ul {
  list-style: none;
}
ul li {
  position: relative;
}
ul li::before {
  content: "";
  background-color: #d8d4cf;
  position: absolute;
  top: 50%;
  width: 0.25rem;
  height: 0.25rem;
  margin-left: -0.75rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
