body {
  background: #f7f7f7;
}

img {
  width: 90%;
  object-fit: cover; /* keeps aspect ratio, fills square */
  border-radius: 10px; /* adjust for how round you want it */
  margin: 1rem;
}

.about-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.about-container > section {
    width:90%
  }

@media (min-width: 1300px) {
  img {
    width: 400px;
    height: 400px;
  }

  .about-container {
    flex-direction: row;
    align-items: start;
    justify-content: center;
    gap: 1rem;
  }

  .about-container > section {
    width:40%
  }

}
