.carousel-container {
  position: relative;
  width: 400px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
  opacity: 1;
}

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

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.home-text h2 {
  font-size: 1.5rem;
}

.home-text ul {
  text-align: left;
  margin-top: 1rem;
}

.home-imgs-bottom img {
  width: 140px;
  aspect-ratio: 9/15;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-container {
    width: 100%;
  }
}