/* main {
  max-width: calc(1200px - 4rem);
  width: 100%;
  margin: 2.5rem auto 3rem;
} */

main section {
  padding: 2rem 2rem 0;
}

section header {
  position: relative;
}

section header h1 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  text-align: left;
  text-transform: capitalize;
}

::before:is(section header h1, article h2) {
  position: absolute;
  content: "";
  bottom: 0.1rem;
  left: -0.3rem;
  height: 2.5px;
  background-color: var(--secondary-color);
  width: 10%;
  transform: translateX(-10%);
}

section article {
  position: relative;
  padding-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 2.1rem;
  letter-spacing: 0.5px;
  text-align: justify;
}

article h2 {
  position: relative;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondary-color);
}

article ul li {
  list-style-type: none;
}

article ul li::before {
  content: "\2022";
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: 1em;
}

/* @media only screen and (max-width: 1280px) {
  main {
    max-width: calc(1000px - 4rem);
    width: 100%;
  }
}

@media only screen and (max-width: 1024px) {
  main {
    max-width: calc(800px - 4rem);
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  main {
    max-width: calc(600px - 2rem);
    width: 100%;
  }

  main section {
    padding: 2rem 1rem;
  }

  section article {
    padding-top: 1rem;
    font-size: 1.1rem;
    line-height: 2rem;
  }
} */
/* 
@media only screen and (max-width: 568px) {
  main {
    max-width: calc(500px - 2rem);
    width: 100%;
  }

  main section {
    padding: 2rem 1rem;
  }
} */
