@keyframes carousel {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carousel-wrapper {
  display: flex;
  background: whitesmoke;
  overflow: hidden;
  position: absolute;
  bottom: 0px;
  left: 0;
  font-family: "Bungee", sans-serif;
  border-top: 4px solid #f5ce00;
  border-bottom: 4px solid #f5ce00;
}

.carousel {
  display: inline-flex;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
}
.carousel.animated {
  animation: carousel 20s linear infinite;
}
.carousel.paused {
  animation-play-state: paused;
}

@media only screen and (hover: hover) {
  .carousel-wrapper:hover .carousel {
    animation-play-state: paused;
  }
}/*# sourceMappingURL=carousel.css.map */