/* about */
#about {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px;
    font-family: 'Heebo', sans-serif;
    background-image: linear-gradient(to top, #fff5db, white);
}

@media (max-width: 1300px) {
   #about {
       flex-direction: column-reverse;
     }
  }

#textWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#textWrapper h2 {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
}

#textWrapper p {
  font-size: clamp(17px, 3vw, 20px);
  font-weight: 300;
}

#roeyHadarImg {
  display: block;
  width: 100%;
  max-width: 250px;
  border-radius: 20px;
  padding-bottom: 0;
}