body {
  background: white;
  color: #666666;
  position: relative;
  padding-top: 2rem;
}


.gc-logo {
  width: 60%;
  padding-bottom: 10px;
  flex: auto;
  align-items: center;
  text-align: center;
}

p {
  text-align: justify;
  /* text-indent: 20px; */
}

ol {
  list-style-type: none;
  counter-reset: item;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
  padding-top: .5rem;
}

ol > li {
  display: table;
  counter-increment: item;
  margin-bottom: 0.6em;
}

ol > li:before {
  content: counters(item, ".") ". ";
  display: table-cell;
  padding-right: 0.6em;    
}

li ol > li {
  margin: 0;
}

li ol > li:before {
  content: counters(item, ".") " ";
}

ul {
  list-style-type: square;
}