.carousel-container {
  width: 100%;
  max-width: 100ch;
  margin: auto;
  text-align: center;
}

.filename {
  font-size: 0.9em;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.image-container {
  flex-grow: 1;
  overflow: hidden;
}

.carousel-image {
  max-height: 300px;
  width: 100%;
  object-fit: contain;
  display: none;
}

.carousel-button {
  font-size: 2em;
  background: none;
  color: var(--font);
  border: none;
  cursor: pointer;
}

