/* Setting 'font-size' at 62.5% means that 1rem now equals 10pt/10px. */
:root {
    -webkit-font-smoothing: antialiased;
}

/* Headers, etc. */

b, strong {
  font-weight: 700;
}

.white-space-nowrap {
  white-space: nowrap;
}

.text-decoration-none,
.text-decoration-none a {
  text-decoration: none;
  color: currentColor;
}

.text-transform-uppercase {
  text-transform: uppercase;
}

.line-height-1 {
  line-height: 1;
}

.line-height-1p2 {
  line-height: 1.2;
}

.has-normal-font-weight {
  font-weight: 400;
}

.has-bold-font-weight {
  font-weight: 700;
}
.has-nunito-font-family.has-bold-font-weight,
.has-nunito-font-family .has-bold-font-weight {
  font-weight: 900;
}

body:not(.home) .entry-content ul {
  list-style: disc;
  li {
    list-style: disc;
    margin-left: 1rem;
    ul {
      li {
        list-style: circle;
      }
    }
  }
}