/* Container styling */
.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-inline: 10%;
    padding: 20px;
    width: 80%;
    gap: 20px;
    flex-direction: row;
  }
  
  /* Photo styling */
  .about-photo img {
    width: 200px;
    height: auto;
    border-radius: 50%;
    margin: 20px;
  }
  
  /* Text styling */
  .about-text {
    flex-grow: 1;

  }
    
  .about-text p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  
  /* Responsive Design: When the screen is small, the image is above the text */
  @media (max-width: 1500px) {
    .about-container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-photo img {
      display: block;
      margin-inline: 40%;
      width: 20%;
    }
  
    .about-text p {
      width: 50%;
      font-size: 14px;
    }
  }
  