.license {
  font-family: monospace;
  
  p {
    text-align: left;
  }
  
  ol:nth-of-type(1) {
    padding-left: 2em;
  }
  
  ol:nth-of-type(2) {
    counter-reset: list;
  } ol:nth-of-type(2) > li {
    list-style: none;
  } ol:nth-of-type(2) > li:before {
    content: "(" counter(list, lower-alpha) ") ";
    counter-increment: list;
  }
}