
  html {
    font-family: "default-font-regular", sans-serif;
    font-size: 16px;
    
    line-height: 1.5;
    color: #343434;
    
    overflow-x: hidden;
    scroll-behavior: smooth;
    
    border-top: 0.3em solid #0ca49f;
  }
  
  @media screen and (min-width: 1900px) {
    
    html {
      font-size: 0.85vw;
    }
  }
  
  
  h1 + p,
  h2 + p,
  h3 + p,
  h4 + p,
  h5 + p,
  h6 + p,
  ul + p,
  h1 + ul,
  h2 + ul,
  h3 + ul,
  h4 + ul,
  h5 + ul,
  h6 + ul {
    margin-top: 1em;
  }

  * {
    box-sizing: border-box;
  }
  
  body {
    width: 100%;
    max-width: 71em;
    min-height: 100vh;
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0em auto;
  }

  main {
    flex: 1 0 auto;
    display: flex;
    flex-flow: column nowrap;
  }
  
  main > * {
    padding: 2rem 1rem;
  }
  
  h2 ~ section:has(h3) {
    
    margin-top: 1rem;
  }
  
  main h1:before {
    content: "";
    position: absolute;
    
    left: 0em;
    bottom: 0em;
    
    width: 2em;
    height: 0.1em;
    
    background: #e66238;
  }
  
  footer > section {
    padding: 1em;
  }

      .autoFit4rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(4rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
      .autoFit5rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
      .autoFit8rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(8rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
      .autoFit11rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
      .autoFit12rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
      .autoFit15rem {
        
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        grid-template-rows: auto;
        align-items: start;
        gap: 1rem;
      }
    
  .gap1rem {
    
    gap: 1rem;
  }
