/* body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #E3E3E3;
} */

/* Keyframes animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

.slider {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 960px;
  margin: 20px auto;
  border-radius: 10px;
}

/* White gradient effect */
.slider::before,
.slider::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 200px;
  height: 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.slider::before {
  top: 0;
  left: 0;
}

.slider::after {
  top: 0;
  right: 0;
  transform: rotateZ(180deg);
}

.slide-track {
  display: flex;
  width: calc(250px * 14);
  animation: scroll 40s linear infinite;
}

.slide {
  height: 100px;
  width: 250px;
}
