
  body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.25;
    background: rgb(235,235,240);
    color: black;
  }
  body.constraint {
    max-width: 700px;
    margin: auto;
    padding: 0 20px;
  }
  p.section-href {
    background: rgb(235,235,240);
    padding: 10px;
    border-radius: 10px;
    margin: 10px 0;
  }
  a {
    color: rgb(0,64,221);
    text-decoration: none; /* no underline */
    outline: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
  }
  a p.section-href:hover, a p.section-href:active {
    background: rgb(188,188,192);
  }
  a.block-href {
    color: black;
  }
  a.top-anchor {
    position: absolute;
    top: 0;
  }
  a.back-to-top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 15px;
    background: rgb(216,216,220);
    padding: 15px;
    border-radius: 10px;
  }
  div.section-tab {
    font-weight: lighter;
    background: rgb(242,242,247);
    border-radius: 10px;
    padding: 14px 10px 2px 10px;
    margin-bottom: 10px;
  }
  p.content-text {
    font-weight: lighter;
    padding: 0 10px;
  }
  .bottom-margin {
    margin-bottom: 80px;
  }
  .content-text-modifier p, li {
    font-weight: lighter;
  }
  .content-text-modifier strong {
    display: inline-block;
    padding-top: 10px;
  }
  @media (max-width: 600px) {
    .sticky-header {
        left: 0;
        top: 0;
        right: 0;
        box-shadow: 0 12px 34px 0 rgba(0, 0, 0, 0.06);
        padding: 0;
        position: fixed;
        z-index: 99;
        background: rgb(235,235,240);
    }
    .sticky-header h2 {
      padding: 0 10px;
    }
    .sticky-header-top-padding {
      padding-top: 60px;
    }
  }
  @media (prefers-color-scheme: dark) {
    @media (max-width: 600px) {
      .sticky-header {
          box-shadow: none;
          background-color: rgb(28,28,30);
      }
    }
  }
  @media (prefers-color-scheme: dark) {
    body {
      background: rgb(36,36,38);
      color: white;
    }
    p.section-href {
      background: rgb(36,36,38);
    }
    a {
      color: rgb(64,156,255);
    }
    a p.section-href:hover, .dark a p.section-href:active {
      background: rgb(66,66,68);
    }
    a.block-href {
      color: white;
    }
    a.back-to-top {
      background: rgba(68,68,70,0.75);
    }
    div.section-tab {
      background: rgb(28,28,30);
    }
  }
