* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #e1e1d7;
}

article {
  max-width: 70%;
  margin: 0 auto;
}

h1 {
  font-size: var(--font-size-xlarge);
  padding-top: clamp(2rem, 8vw, 4rem);
  font-family:var(--font-family-primary);
  font-weight: 100;
  text-align: center;
  color: #0A2D2D;
}

h2 {
  padding-top: clamp(2rem, 8vw, 4rem);
  font-family:var(--font-family-secondary);
  font-weight: 100;
  text-align: center;
  color: #0A2D2D;
}

.article-body {
  font-family:var(--font-family-secondary);
  font-weight: 100;
  text-align: justify;
  font-size: clamp(0.7rem, 2.2vw, 1rem);
  color: #0A2D2D;
  padding: 2rem 0;
}

.about-us-image {
  width: 100%;
  align-self: center;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
}

span {
  font-weight: bold;
}