body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 1.25rem;
  font-style: normal;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #555;
  background-color: #efefef;
}

main.content {
  max-width: 800px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 3.25rem;
  font-weight: 700;
  text-align: center;
  font-family: "DM Serif Text", serif;
  color: #000;
  margin-top: 0;
}

h1 span.sub {
  display: block;
  color: #9d9d9d;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Geist Mono", monospace;
}

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: #000;
  font-family: "DM Serif Text", serif;
}

p {
  font-weight: 400;
  text-align: justify;
  transition: color 0.25s ease-in-out;
}

p:hover,
li:hover,
.code-block:hover {
  color: #000;
}

p.prominent::first-letter {
  font-size: 2.5rem;
  font-weight: 700;
  float: left;
  line-height: 1;
  margin-right: 0.1rem;
  font-family: "DM Serif Text", serif;
}

ul,
ol,
p {
  text-align: justify;
}

ul {
  list-style-type: disc;
  padding-left: 2rem;
}

ul li {
  list-style-type: none;
  margin: 0.5rem 0;
}

ol li {
  margin: rem 0;
  list-style-type: lower-alpha;
}

ol li::marker {
  color: #ff6600;
}
ol li::before {
  color: #ff6600;
}

ul li::before {
  content: "✓ ";
}
li::before {
  color: #ff6600;
  font-weight: bold;
  margin-right: 0.5rem;
}
li {
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: color 0.25s ease-in-out;
}

code {
  font-family: "Geist Mono", monospace;
}

.code-block {
  margin: 1rem 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgb(101, 101, 101);
  /* background-color: #ebebeb; */
  padding: 0.4rem 0.8rem;
  border-radius: 0.2rem;
  background-color: #e7e7e7;
  /* border: 1px solid #dedede; */
  transition: border-color 0.25s ease-in-out;
}

img.badge {
  border-radius: 0.25rem;
}

img.badge:hover {
  transform: scale(1.03);
  transition: transform 0.25s ease-in-out;
}

img.logo {
  margin-top: 2rem;
  width: 200px;
}

@media (max-width: 768px) {
  body {
    font-size: 1.125rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  h1 span.sub {
    font-size: 1.25rem;
  }
  main.content {
    padding: 1rem;
  }
}

footer {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

footer a {
  color: #ff6600;
}

footer a:hover {
  color: #000;
}

footer p.version {
  color: #9d9d9d;
}
