.slideshow-container {
  position: relative;
  margin-block: 1rem;
  margin-inline: auto;
}


.media-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.media-container > img {
    display: block;
    max-width: 100%;
    max-height: 75vh;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: gray;
  font-weight: bold;
  font-size: 20px;
  user-select: none;
  -webkit-user-select: none;
}

.prev {
  left: 0;
  border-radius: 0 3px 3px 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover,
.next:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.8);
}

.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.caption-container {
  text-align: center;
  background-color: #222;
  padding: 2px 16px;
  color: white;
}

.reel {
    width: 100%;
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
}

.reel > img {
    position: relative;
    max-width: 40%;
    max-height: 150px;
    cursor: pointer;
    opacity: 0.6;
}

.reel > img.active,
.reel > img:hover {
  opacity: 1;
}