body {
  font-size: 1rem;
font-family: "Source Code Pro", monospace;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
   /* ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; */
  max-width: 600px;
  margin: 0;
  padding: 2rem;
  color: #111;
  background: #fff;
}

a {
   color: #0366d6;
   text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 2rem;
  padding-top: 1rem;
  /* border-top: 1px solid #111; */
  /* border-top: 1px solid #eee; */
}

h2{
  margin-top: 0;
}

header {
  line-height: 1.6;
  /* border-bottom: 1px solid #eee; */
}

header p{
  color: #1f1f1f
}
section p{
  margin-top: 1rem;
  line-height: 1.6;
}

footer a{
  font-size: 0.9rem;
}

footer{
  margin-top: 0px;
  padding: 0px;
}

hr{
  border: none;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
}

@media (prefers-color-scheme: dark){
  body{
    background: #111;
    color: #e0e0e0;
  }

  a{
    color: #58a6ff
  }

  hr, footer{
    border-colors: #333;
  }

  header p{
    color: #999;
  }
}

@media (max-width: 600px){
  body{
    padding: 1.5rem 1rem;
  }
}