.scrolling-image-container {
  overflow: hidden;
}

.scrolling-image {
  margin: 0px;
  background: url("esteban-sucked-gif.gif") repeat-x;
  height: 750px;
  width: 7680px;
}

@keyframes slide {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(-3840px); /* The image width */
  }
}

.scrolling-image {
  background: url("esteban-sucked-gif.gif") repeat-x;
  height: 400px;
  height: 225px;
  animation: slide 10s linear infinite;
}

#kanker {
    position: absolute;
    top:0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100px;
    height: 100px;
    z-index: 100;
    transform: translateY(-172.5px) translateX(-300px);
}