/************************* MAIN *********************************/

.imageContainer {
  display: flex; /* Enable Flexbox on the container */
  flex-direction: row;
  gap: 10%; /* Add some space between the images */
  justify-content: center; /* Optional: Center images when they wrap */
  align-items: center;
}

.program {
  width: 100%;
  height: auto;
}

.jesse {
  width: 84%;
  height: auto;
}

img {
  max-width: 460px;
}

/* ABOUT SECTION */
h3 {
  padding-top: 3%;
  padding-bottom: 2%;
}

.ResEdit {
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

.ResEdit img {
  width: 74%;
  height: auto;
}

.Marie {
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

.Marie img {
  width: 70%;
  height: auto;
  border: 1px solid blue;
}

.upClose {
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}

.upClose img {
  width: 70%;
  height: auto;
  border: 1px solid blue;
}

p {
  padding-bottom: 20px;
  padding-left: 30px;
  width: 94%;
  color: rgb(70, 70, 70);
  font-size: 1rem;
  text-align: justify;
}

.rule {
  padding-bottom: 3%;
}

/******************* Media Queries Breakpoints *******************/
/* Media queries can be placed in both global CSS files and within  */
/* component-specific or "endpoint" CSS files, depending on the project's  */
/* organization and desired modularity. */

/* Styles for screens less than 576px (e.g., smartphones) */
@media screen and (width < 576px) {
  main {
    font-size: 0.9rem;
  }

  .columns {
    flex-direction: column;
  }

  .imageContainer {
    flex-direction: column;
  }

  img {
    max-width: 340px;
  }
}

/* Styles for screens wider than 576px -  768px (e.g., tablets) */
@media screen and (width >= 576px) and (width < 768px) {
  main {
    font-size: 1.2rem;
  }

  .columns {
    flex-direction: column;
  }

  .imageContainer {
    flex-direction: column;
  }

  img {
    max-width: 380;
  }
}
