html, body {
  height: 100%;
  width: 100%;
}

#features li {
  margin-bottom: 1rem;
}

#features ul {
  padding-left: 2.5rem;
  list-style: none;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

#features ul li::before {
  color: #6592e6;
  font-size: 2rem;
  content: "\2022";
  width: 1.6rem;
  left: 1.4rem;
  line-height: 1em;
  font-weight: bold;
  position: absolute;
}

#terms ol li {
  padding-left: 1rem;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  text-align: left;
}

#terms ol li::before {
  left: -50px;
  margin-top: 5px;
  position: absolute;
  counter-increment: myCounter;
  content: counter(myCounter);
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #4479d9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#terms ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}

