.image-container {
  text-align: center;
  width: 50%; /* Set the width to 50% */
  margin: 0 auto; /* Center the container horizontally */
}

.gallery-popup {
  display: none
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.8);
}

.gallery-popup img {
  width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
}

.arrow-left, .arrow-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 36px;
  cursor: pointer;
  z-index: 10;
  color: white;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.MainBody {
  font-size:22.0pt;
  line-height:107%;
  font-family: "Arial",sans-serif;
}

.MainBodyBlockIndent {
  font-size: 22.0pt;
  line-height: 107%;
  font-family: "Arial", sans-serif;
  margin-left: 2.0in; /* Moves the whole block over */
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 48px;
  cursor: pointer;
  color: white;
}

figcaption {
  font-size: 26px;
  margin-top: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  color: white;
  padding: 5px;
  text-align: center;
}

p {
  padding: 0 5%; /* Add 5% padding on left and right */
}