.slider {
  width: 70vw;
  height: 39vw;
  position: relative;
  text-align: center;
  background-color: #31525B;
  box-shadow: -3px -3px 10px #31525B;
}

.slider img {
  max-width: 100%;
  height: 39vw;
  position: absolute;
  transform: translate(50%, 0%);
  top: 0;
  right: 50%;
  object-fit: contain;
  /*filter: drop-shadow(0 0 5px #333);*/
}

#slideShow1 a {
  text-decoration: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 2px 10px;
  color: #FFA101;
  font-weight: bold;
  font-size: 30px;
  transition: 0.6s ease;
  border-radius: 40px;
  user-select: none;
}
.next {
  right: 15%;
  border-radius: 40px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(250,230,177,0.7);
  color: #31525B;
}