html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.carousel {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.carousel-images img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: black;
  display: none;
  transition: opacity 0.5s ease-in-out;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 100;
  transition: background-color 0.3s;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.carousel button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
