#slideshow-container {
  margin: 2em auto;
  width: 80%;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}

.slideshow-image {
  width: 100%;
  display: none;
  border-radius: 20px;
  transition: opacity 0.5s;
  cursor: pointer;
}

.slideshow-image.active {
  display: block;
}

.arrow {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.6s ease;
  user-select: none;
  background-color: #CD1076;
  border-radius: 15%;
  text-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}
@media screen and (max-width : 800px) {
  #slideshow-container {
    width: 90%;
  }
}
@media screen and (max-width : 600px) {
  #slideshow-container {
    width: 100%;
  }
}