.gallery-container{
  background: var(--black-color);
  color: var(--primary-color);
  min-height: 100vh;
  overflow: hidden;
}

.gallery-content{
  max-width: 140rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  overflow: hidden;

  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  min-height: 100vh;

  width: 100%;
  overflow: visible;
}

.gallery-description{
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  width: 100%;
}

.carousel-container {
  display: flex;
  width: calc(100% * 3);
  overflow: hidden;
  animation: slide 20s ease-in-out infinite;
}

.carousel-item {
  flex: 0 0 auto;
}

.carousel-image {
  border-radius: 20px;
  padding: 10px;
  width: auto;
  height: 60vh;
}

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

@media (max-width: 800px) {
  .gallery-content{
    padding: 3rem 1rem;
  }

  .carousel-container {
    width: calc(100% * 15);
  }

  .gallery-description{
    font-size: 1.5rem;
    text-align: center;
    font-weight: bold;
  }
}