body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Helvetica Neue', sans-serif;
  background: black;
  color: white;
  overflow: hidden;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(40%);
}

.quote {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #e0e0e0;
  font-size: 2rem;
  max-width: 90%;
  text-align: center;
  padding: 0 1rem;
}

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

@keyframes fade {
  from {opacity: 0.4}
  to {opacity: 1}
}

@media (max-width: 768px) {
  .quote {
    font-size: 1.2rem;
  }
}
