
/* = = = = = = = = = = = = = = = = = datei carousel.css = = = = = = = = = = = = = = = = = = = = = = = = = */

/* diese datei regelt die css-slide-show  */



<style>
      body {
  align-items: center;
  background: #E3E3E3;
  display: flex;

  justify-content: center;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-650px * 9));
            transform: translateX(calc(-650px * 9));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-650px * 9));
            transform: translateX(calc(-650px * 9));
  }
}
.slider {
  background: white;
  /*  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125); */

  margin: auto;
  overflow: hidden;
  position: relative;
  width: 95%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";

  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(650px * 10);
}
.slider .slide {


}

    </style>

