.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 100px;
}
.row img {
  height: 300px;
}
/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: white;
}
.mySlides {
  display: none;
  text-align: center;
}
.mySlides img {
  width: 30%;
  height: auto;
}
/* Modal Content */
.modal-content {
  position: relative;
  background-color: white;
  margin: auto;
  padding: 0;
}
/* The Close Button */
.close {
  color: #4e4376;
  position: absolute;
  top: 70px;
  right: 25px;
  font-size: 2em;
  font-weight: bold;
  padding: 0 5px 0 5px;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

/* Hide the slides by default */
/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 300px;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: #4e4376;
  font-weight: bold;
  font-size: 1.2em;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
  color: #fefefe;
  background-color: #4e4376;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #4e4376;
  font-size: 1.2em;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}