.texts-section {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  font-size: 1.5rem;
}

section img {
  border-radius: 3rem;
}
.photos-section {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  margin: 0 auto;
  gap: 3rem;
  flex-wrap: wrap;
}


.presidents-container {
  display: flex;
  align-items: center;

  gap: 3rem;
}

.photo-container {
  width: 25rem;
  height: 22rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.photo-container img {
    width: 15rem;
    height: 18rem;
}
.photos-text h3 {
  font-size: 1.4rem;
  font-weight: bold;
}
.photos-text p {
  width: 100%;
  text-align: center;
}

.ongoing-presidents {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 80%;
  gap: 5rem;
}
.ongoing-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.ongoing-photo {
  display: flex;
  gap: 3rem;
}
.ongoing-photo img {
  width: 20rem;
  height: 20rem;
}
.ongoing-text {
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.ongoing-text h3 {
  font-weight: bold;
}
.ongoing-text h4 {
  font-weight: 500;
}
.ongoing-text p {
  color: #666666;
}
@media screen and (max-width: 900px) {
  .ongoing-text p {
  font-size: 1.2rem;
}
.ongoing-text h3 {
  font-size: 1.8rem;
}
.ongoing-text h4 {
  font-size: 1.2rem;
}
}
@media screen and (max-width: 720px) {
  .ongoing-photo {
    flex-direction: column;
    }
    .ongoing-photo img {
  width: 20rem;
  height: 25rem;
    }
}
@media screen and (max-width: 662px) {
  .photos-section {
  justify-content: center;
    }
}
