ol li::marker, ul li::before {
    color:#551A8B;
  }
  
  h1, h2, h3 {
    color: teal;
    font-size:initial;
    font-weight:initial;
  }

  h1::before {
    content:"# ";
  }

  h2::before {
    content:"## ";
  }

  h3::before {
    content:"### ";
  }
  
  ol {
    margin:0;
    padding:0 1rem;
  }
  
  ul {
    padding:0;
  }
  
  ul li::before {
    content: "* ";
  }
  
  ul li::marker {
    content:"";
  }

  * {
    text-transform: lowercase;
  }