


#about-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5em;
}

.about-left {
  width: 55%;
}

.about-right {
  width: 40%;
}

#about-image {
  width: 100%;
}

#est {
  color: var(--main);
  font-size: 1.2rem;
  font-weight: bold;
  font-style: italic;
  margin: 0 0.2em;
}

#about-story {
  font-size: 1.2em;
  line-height: 1.5em;
}

#about-title {
  font-size: 2.2em;
  margin: 0;
}


@media only screen and (max-width: 1000px) {
  
  #about-container {
    flex-direction: column-reverse;
    padding-bottom: 2rem;
  }

  .about-left, .about-right {
    width: 100%;
  }


}

