.slideshow-container {
  position: relative;
  align-self: center;
  overflow: hidden;
}

.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
	padding: 0;
  border: 0;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}


.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide .copyright {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: left;
  font-size: 0.75em;
  color: var(--text-dark-color);
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.5em;
  padding-left: 1.5em;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 1em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: bold;
  font-size: 2em;
  border-radius: 0.3em;
  transform: translateY(-50%);
  user-select: none;
  z-index: 1
}

.next {
  right: 0;
}

.prev {
  left: 0;
}

.prev:hover, .next:hover {
  color: white;
}
