head, body, html {
  
  background-color: pink;
}



.container {
  overflow: hidden;
}

.sliding-background{
  background-image: url("/wizard disc.gif");
  background-size: 10%;
  background-repeat: repeat-x;
  height: 200px;
  width: 5076px;
  animation: slide 20s ease-in-out infinite;
  animation-iteration-count: infinite;
}

.sliding-background2 {
  background-image: url("/wizard disc.gif");
  background-size: 10%;
  background-repeat: repeat-x;
  height: 200px;
  width: 5076px;
  animation: slide2 20s ease-in-out infinite;
  animation-iteration-count: infinite;
}

@keyframes slide {
  0% {
    transform: translate3d(2000px, 0, 0);
  }
  50% {
    transform: translate3d(-2000px, 0, 0); /* The image width */
  }
    100% {
    transform: translate3d(2000px, 0, 0); /* The image width */
  }
}

@keyframes slide2 {
  0% {
    transform: translate3d(-5000px, 0, 0);
  }
  50% {
    transform: translate3d(1400px, 0, 0); /* The image width */
  }
    100% {
    transform: translate3d(-5000px, 0, 0); /* The image width */
  }
}



.marquee {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
}

.marquee span {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 100s linear infinite;
}

.marquee2 span {
  animation-delay: 0s;
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-100%, 0);
  }
    100% {
    transform: translate(0, 0);
  }
}