.about {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 1rem 2rem;
}

.about .title {
  width: 380px;
  margin: 1rem;
  max-width: 50%;
  box-sizing: border-box;
}

.about .content {
  max-width: 60%;
}

@media (max-width: 1000px) {
  .about .content {
    max-width: 90%;
  }
}

@media (max-width: 850px) {
  .about .content {
    max-width: 95%;
  }
}
