body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans",
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  margin: 0px;
  background-color: #0d1117;
}
header {
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  margin: auto;
  border: 1px solid #444;
  border-top: none;
  border-radius: 0px 0px 8px 8px;
}
header .logo-wrapper {
  display: flex;
  align-items: center;
  min-width: 200px;
}
.logo-wrapper svg {
  fill: white;
  color: white;
  width: 36px;
  margin-right: 10px;
}
header .page-title {
  font-size: 24px;
  font-weight: bold;
}
header .btn {
  padding: 7px 14px;
  background-color: #e6edf3;
  color: #111;
  border-radius: 6px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
header .btn:hover {
  background-color: #f0e9b1;
}
article.markdown-body {
  padding: 20px;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #444;
  border-radius: 8px;
}

article span {
  cursor: pointer;
  color: white;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: dashed;
}
article span:hover {
  color: #f0e9b1;
}

article h1 {
  text-align: center;
}

aside {
  color: #e6edf3;
  padding: 20px 20px 15px 20px;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #444;
  border-radius: 8px;
}
.file-list-inner {
  display: grid;
  grid-template-columns: auto auto auto;
}
.file-list-inner span {
  border-left: 2px solid #e6edf3;
  padding-left: 4px;
  cursor: pointer;
  color: white;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-style: dashed;
  margin-bottom: 5px;
}

/* IMAGES */
.markdown-body img {
  display: block;
  max-width: 600px;
  max-height: 900px;
  width: 90%;
  margin: auto;
}
