.gallery {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.gallery > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 25px 25px;
    color: var(--primary-dark);
    width: 25%;
    min-width: 200px;
}

.gallery img {
    width: 100%;
}

.row > .column {
  padding: 0 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.column {
  float: left;
  width: 25%;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(0 0 0 / 90%);
  align-items: center;
  justify-content: center;
}

/* Modal Content */
.modal-content {
  position: relative;
  padding: 0;
  width: 90%;
  height: 80vh;
}

/* The Close Button */
.close {
  color: var(--white);
  position: absolute;
  top: 10px;
  right: 25px;
}

.close:hover,
.close:focus {
  color: var(--grey);
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
    display: none;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.mySlides >img {
    max-width: 100%;
    max-height: 100%;
}

.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: calc(50% - 25px);
  padding: 16px;
  color: var(--white);
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  background-color: rgba(0, 0, 0, 0.8);
}

/* 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 {
  background-color: black;
}