#about-header {
  text-align: center;
  margin-bottom: 50px;
}

#about-content {
  display: flex;
}

#about-content img {
  margin-right: 50px;
  object-fit: contain;
}

#about-text {
  text-align: right;
  display: flex;
  flex-direction: column;
  font-size: 24px;
}

#about-text p {
  margin-bottom: 15px;
}

#contact-us {
  margin-top: 50px;
  font-size: 24px;
}

#contact-us h1 {
  margin-bottom: 10px;
}

#contact-us a {
  color: var(--green);
}

/* RESPONSIVE STYLING */

@media (max-width: 1100px) {
  #about-content {
    flex-direction: column;
    align-items: center;
  }

  #about-content img {
    margin-right: 0px;
    margin-bottom: 30px;
    width: 50%;
  }

  #about-text {
    text-align: center;
  }

  #about-text,
  #contact-us {
    font-size: 20px;
  }
}
