/* style <About/> */
#about {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#about img {
  width: 30vw;
  aspect-ratio: 1.5/1;
  border: 0.75rem #fefae0 solid;
  margin: 3rem 0 2rem 0;
}

#about p {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  color: #ed7e90;
  width: 60vw;
  text-align: center;
  margin: 1rem 0 3rem 0;
}

/* responsive styling */
@media (max-width: 575px) {
  #about p {
    font-size: 1rem;
    width: 90vw;
    margin-bottom: 5rem;
  }

  #about img {
    width: 50vw;
    border-width: 0.5rem;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  #about p {
    font-size: 1rem;
    width: 80vw;
    margin-bottom: 4rem;
  }

  #about img {
    width: 45vw;
    border-width: 0.5rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #about p {
    width: 80vw;
  }

  #about img {
    width: 40vw;
    border-width: 0.6rem;
  }
}
