#content {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}

#about-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

#about-content > div:first-of-type {
  width: 35%;
}

#about-content > div:last-of-type {
  width: 65%;
}

#about-content > div:last-child {
  padding-left: 10px;
}

#about-content img {
  width: 90%;
}

#about-content p {
  font-weight: 500;
  line-height: 1.5rem;
}

@media (max-width: 800px) {
  #content {
    margin-top: 60px;
  }

  #about-content {
    display: flex;
    flex-direction: column;
  }

  #about-content > div:first-of-type {
    width: 60%;
    text-align: center;
  }

  #about-content > div:last-of-type {
    width: 80%;
  }

  #about-content div:last-child {
    padding-left: 0;
  }

  #about-content div:last-child h2 {
    text-align: center;
  }
}

@media (max-width: 1100px) {
  #about-content > div:first-of-type {
    width: 40%;
  }

  #about-content > div:last-of-type {
    width: 60%;
  }
}

@media (max-width: 900px) {
  #about-content > div:first-of-type {
    width: 45%;
  }

  #about-content > div:last-of-type {
    width: 55%;
  }
}

@media (max-width: 800px) {
  #about-content > div:first-of-type {
    width: 60%;
  }

  #about-content > div:last-of-type {
    width: 80%;
  }
}

@media (max-width: 700px) {
  #about-content > div:first-of-type {
    width: 70%;
  }

  #about-content > div:last-of-type {
    width: 80%;
  }
}

@media (max-width: 500px) {
  #content {
    margin-top: 30px;
  }

  #about-content > div:first-of-type {
    width: 80%;
  }

  #about-content > div:last-of-type {
    width: 90%;
  }
}

@media (max-width: 400px) {
  #about-content > div:first-of-type {
    width: 90%;
  }
}
