body {
  margin: 0;
  background: #0a0a0a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  color: white;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide {
  display: none;
  text-align: center;
}

.artwork {
  max-width: 90%;
  max-height: 70vh;
}

.links {
  margin-top: 20px;
}

.links .icon img {
  width: 60px;
  height: 60px;
  margin: 0 15px;
  transition: filter 0.3s;
}

.slide:hover .links .icon img {
  filter: brightness(1.3);
}

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

.arrow {
  width: 50px;
  height: auto;
}

.left {
  transform: rotate(180deg);
}

.prev { left: 20px; }
.next { right: 20px; }

.fade {
  animation-name: fade;
  animation-duration: 0.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}
