.slideshow-container {
  margin: 35px auto;
  position: relative;
  width: 65vw;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,.3);
}
.image-container {
  width: 100%;
  height: 100%;
  display: flex;
  /*transition: transform 0.4s ease-in-out;*/
}
.slideshow-image {
  width: 100%;
  flex-shrink: 0;
}
.btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 20px;
  opacity: .5;
  cursor: pointer;
}
.btn.prev {
  left: 10px;
}
.btn.next{
  right: 10px;
}
.btn:hover {
  opacity: 1;
}