body,
section,
article,
main,
div,
a {
  box-sizing: border-box;
}
h2,
h3,
p {
  color: var(--heritageWhite);
  margin: 0;
}
main {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  margin: 80px auto 0 auto;
  padding: 20px 20px 10px 20px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  font-family: var(--body-font-family);
}
h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 0.8em;
  margin-bottom: 20px;
  text-align: center;
  line-height: 100%;
}
.legalCategory {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
p {
  display: block;
  width: 100%;
  text-align: justify;
}
a {
  color: var(--heritageRed);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--heritageBlue);
}
@media screen and (min-width: 800px) {
  h2 {
    font-size: 55px;
  }
}
