/* About Section */
.about {
  padding: 8rem 5%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about__title {
  font-size: var(--font-size-xxx-large);
  margin-bottom: 2rem;
}

.about__text {
  font-size: var(--font-size-large);
  color: var(--color-neutral-200);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .about {
    padding: 5rem 5%;
  }

  .about__title {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 3.5rem 5%;
  }

  .about__title {
    margin-bottom: 1rem;
  }

  .about__text {
    line-height: 1.7;
  }
}
