
  /* Inspired by https://www.swyx.io/css-100-bytes */
  
  main {
    max-width: 72ch !important;
    padding: 1.5em 0.2em !important;
    margin: auto !important;
    line-height: 1.75 !important;
    font-size: 17px !important;
    color: #d0d4d8 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  }

  section {
    margin-bottom: 4em !important;
  }

  h1 {
    font-size: 2em !important;
    margin-bottom: 1em !important;
    font-weight:700 !important;


  }
  p {
    margin-bottom: 1.5em !important;
  }
  h2 {
    font-size: 1.5em !important;
    margin-bottom: 0.5em !important;
    margin-top: 1em !important;
    font-weight:600 !important;

  }

  h3 {
    font-size: 1.25em !important;
    font-weight:600 !important;

  }

   ul, ol {
    margin-top: 0 !important;
    margin-bottom: 1em !important;
  }

  a, a:visited {
    color: #0997cc !important;
    text-decoration: none !important;
    font-weight: 500 !important;
  }
  @media (prefers-color-scheme: light) {
    html:not(.alwaysDark) img[src="/logo.png"] {
      filter: brightness(0.69) contrast(1.13) hue-rotate(305deg);
    }
  }
  h3 {
    font-weight: 600;
}
ul li {
    list-style: disc;
    margin: 0 2rem;
}
ol li {
    list-style: decimal;
    margin: 0 2rem;
}

  a:hover {
    opacity: 65% !important;
  }

  img {
    max-width: 100%;
  }

  /* Some css classes */
  .flex {
    display: flex !important;
  }

  .flex-none {
    flex: none !important;
  }

  .flex-1 {
    flex: 1 !important;
  }

  .items-center {
    align-items: center !important;
  }

  .justify-center {
    justify-content: center !important;
  }

  .flex-wrap {
    flex-wrap: wrap !important;
  }

  .px-2 {
    padding-left: 0.5em !important;
    padding-right: 0.5em !important;
  }

  .mb-1 {
    margin-bottom: 0.25em !important;
  }

  .mb-2 {
    margin-bottom: 0.5em !important;
  }

  .mb-4 {
    margin-bottom: 1em !important;
  }

  .mt-2 {
    margin-top: 0.5em !important;
  }

  .mt-4 {
    margin-top: 1em !important;
  }

  .ml-1 {
    margin-left: 0.25em !important;
  }

  .mr-4 {
    margin-right: 1em !important;
  }

  .one-line {
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 1 !important;
    -webkit-box-orient: vertical !important;
  }

  .text-sm {
    font-size: 0.8em !important;
  }

  .text-lg {
    font-size: 1.25em !important;
  }

  .img-lg {
    max-width: 7.5em !important;
    border-radius: 0.8em !important;
    box-shadow: 0.2em 0.2em 0.2em #DCDCDC !important;
  }

  .img-md {
    max-width: 3.5em !important;
    border-radius: 0.2em !important;
    box-shadow: 0.1em 0.1em 0.1em #DCDCDC !important;
  }

  .img-sm {
    max-width: 1em !important;
    border-radius: 0.2em !important;
  }

  .border-t {
    border-top: 1px solid #DCDCDC !important;
  }

  .border-b {
    border-bottom: 1px solid #DCDCDC !important;
  }

  .text-center {
    text-align: center !important;
  }

  .w-full {
    width: 100% !important;
  }

  .font-bold {
    font-weight: bold !important;
  }

  @media only screen and (max-width: 600px) {
    .hide-mobile {
      display: none !important;
    }
  }

  .icon-arrow-left:before {
    content: "←" !important;
  }

  .icon-arrow-right:before {
    content: "→" !important;
  }