ol.sunflower-list {
  list-style: none !important;
  counter-reset: count;
  padding-left: 0;
}

ol.sunflower-list li {
  counter-increment: count;
  padding-left: 3rem;
  position: relative;
  margin-bottom: 1.5rem;
  margin-left:1.5rem;
  line-height: 1.4;
  font-family:"league spartan";
  font-size: 1.4em;
}

ol.sunflower-list li::before {
  content: counter(count)".";
  position: absolute;
  left: -.5em;
  top: 0em;   /* THIS is where you nudge it up/down */
  font-family: 'MADE Sunflower';
  font-size: 4em;
  color: #CB5B3B;
  line-height: 1;
  margin-right: .8rem;
}

