.carousel-main {
  background-color: #000;
  /* padding-top: 3rem; */
}
.carousel-container {
  overflow: hidden;
  height: 360px;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  width: auto;
  height: 360px;
  margin: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.carousel-item img {
  height: 100%;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
