#about{
  display: flex; flex-direction: row;  align-items: center; justify-content: space-around;
  height: 100%;
  padding: 50px 0;
  flex-wrap: wrap;
}

.about-text h1{
  font-size: 60px;
}
.story-content {
  font-size: 16px;
  line-height: 1.6;
  margin-top: 20px;
  width: 600px;
  text-align: justify;
}


.about-img img{
  height: 400px;
  border-radius: 50%;
}

@media screen and (max-width: 1024px){
  #about{
    flex-direction: column;
    gap: 50px;
  }
  .about-text h1{
    text-align: center;
  }
}
@media screen and (max-width: 700px){
  .about-text h1{
    flex-wrap: wrap;
    text-align: center;
    padding: 0 20px;
  }
  .story-content {
    width: 100%;
    padding: 0 60px;
  }
  .about-img{
    display: flex; justify-content: center;
  }
  .about-img img{
    max-width: 80%;
    height: 80%;
  }
}