.carousel {
  display: flex;
  overflow: hidden;
  z-index: 2;
  /* width: 100%; */
  margin-top: 1em;
  margin-bottom: 1em;
}
.carousel-items {
  background-color: rgb(21, 26, 31);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  margin: 0 2px;
  border-radius: 6px;
  width: 13em;
  height: 15em;
  flex: 0 0 auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  /* transform-origin: right;
		transform: translateX(-500%);

		transition: transform 15s; */

  /* animation */
  animation: slide 12s infinite;
  animation-direction: alternate;
}
/* animation */
@keyframes slide {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-365%);
  }
}
.carousel-items img {
  width: 95%;
  height: 95%;
  margin: auto 0;
  border-radius: 8px;
  /* margin: 0 1%; */
}
#top-text {
  font-size: 1.5em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-top: 1em;
}
#top-text > p {
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  margin: 0.5em;
  margin-bottom: 0;
}
#root {
  margin-top: -80px;
}
