#about {
    background-image: linear-gradient(to top, black, rgb(32, 32, 32));
    padding: 50px;
}

#about h2 {
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 200;
    font-size: clamp(20px, 3vw, 28px);
    text-align: center;
}

#about p {
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 100;
    font-size: clamp(16px, 3vw, 22px);
    text-align: center;
}

/* --------------------------------------------------------------- */
#proExperience {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 20px;
}

#proExperience h3 {
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 200;
}

.experWrapper {
  opacity: 0;
  transform: translateY(40px);
  transition: all 2s ease; /* אנימציה עדינה */
}

.experWrapper.show {
  opacity: 1;
  transform: translateY(0);
}