* {
  cursor: url(red-dot.png) 60 60, crosshair;
}

.o {
    font-family: sans-serif;
    color: rgb(0, 34, 255);
    font-size: 430px;
    position: absolute;
    top: -50px;
    left:10px;
  }

.o:hover {
  color: transparent;
  background-image: url(O-Holzoptik.png);
  background-size: 310px;
  background-repeat: no-repeat;
  background-position: center center;
}

  .r {
    font-family: serif;
    color: rgb(0, 34, 255);
    font-size: 670px;
    position: absolute;
    top: -255px;
    left:365px;
  }

  .r:hover {
    color: transparent;
    background-image: url(r-Papieroptik.png);
    background-size: 240px;
    background-repeat: no-repeat;
    background-position: 0px 295px;
  }

  .n {
    font-family: 'Lucida Sans',;
    color: rgb(0, 34, 255);
    font-size: 470px;
    position: absolute;
    top: -70px;
    right:305px;
  }

  .n:hover {
    color: transparent;
    background-image: url(N-Steinoptik.png);
    background-size: 259px;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .a {
    font-family: Georgia,;
    color: rgb(0, 34, 255);
    font-size: 680px;
    position: absolute;
    top: -255px;
    right:20px;
  }

  .a:hover {
    color: transparent;
    background-image: url(a-Aluinium.png);
    background-size: 290px;
    background-repeat: no-repeat;
    background-position: 50px 290px;
  }

  .m {
    font-family: Verdana;
    color: rgb(0, 34, 255);
    font-size: 430px;
    position: absolute;
    top: 270px;
    left:0px;
  }

  .m:hover {
    color: transparent;
    background-image: url(M-Marmoroptik.png);
    background-size: 320px;
    background-repeat: no-repeat;
    background-position: 40px 120px;
  }

  .e {
    font-family: Cambria;
    color: rgb(0, 34, 255);
    font-size: 675px;
    position: absolute;
    top: 90px;
    left:350px;
  }

  .e:hover {
    color: transparent;
    background-image: url(e-Holzoptik.png);
    background-size: 275px;
    background-repeat: no-repeat;
    background-position: 10px 300px;
  }

  .n-1 {
    font-family: Franklin Gothic Medium;
    font-style: italic;
    color: rgb(0, 34, 255);
    font-size: 695px;
    position: absolute;
    top: 80px;
    right:280px;
  }

  .n-1:hover {
    color: transparent;
    background-image: url(n-Tarrazzooptik.png);
    background-size: 310px;
    background-repeat: no-repeat;
    background-position: 55px 320px;
  }

  .t {
    font-family: helvetica;
    color: rgb(0, 34, 255);
    font-size: 440px;
    position: absolute;
    top: 305px;
    right:20px;
  }

  .t:hover {
    color: transparent;
    background-image: url(T-Lederoptik.png);
    background-size: 260px;
    background-repeat: no-repeat;
    background-position: center center;
  }

  div {
    margin: 100px;
    padding: 100px;
  }
  
  
  .box:hover {
    color: #ffffff;
    font-weight: bold;
    transition: all 0,2;
  }

  .text {
    font-family: Franklin Gothic Medium;
    font-style: italic;
    font-size: 55px;
    color: blue;
    position: absolute;
    top: 660px;
    left: -159px;
  }

  .text-2 {
    font-family: sans-serif;
    font-size: 80px;
    color: blue;
    position: absolute;
    top: 710px;
    left: -159px;
  }

  .text-3 {
    font-family: Franklin Gothic Medium;
    font-style: italic;
    font-size: 30px;
    color: blue;
    position: absolute;
    top: 885px;
    left: 250px;
  }

  .text-4 {
    font-family: sans-serif;
    font-size: 80px;
    color: blue;
    position: absolute;
    top: 1760px;
    left: -159px;
  }

.anim_container > div{
  overflow: hidden;
}

  .anim-o {
    background-image: url(O-Holzoptik.png);
    opacity: 1;
    background-size: 320px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;

  }

  .anim-o {
    animation-duration: 5s;
    animation-name: move;
    animation-iteration-count: infinite;
  }
  
  @keyframes move {
    0% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(120%, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
  }

  .anim-r {
    background-image: url(r-Papieroptik.png);
    opacity: 1;
    background-size: 265px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;
    left: 35px;

  }

  .anim-r {
    animation-duration: 4s;
    animation-name: move;
    animation-iteration-count: infinite;
  }
  
  @keyframes move {
    0% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(120%, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
  }

  .anim-N {
    background-image: url(N-Steinoptik.png);
    opacity: 1;
    background-size: 277px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-N {
    animation-duration: 3s;
    animation-name: move;
    animation-iteration-count: infinite;
  }
  
  @keyframes move {
    0% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(120%, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
  }

  .anim-a {
    background-image: url(a-Aluinium.png);
    opacity: 1;
    background-size: 305px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-a {
    animation-duration: 6s;
    animation-name: move;
    animation-iteration-count: infinite;
  }
  
  @keyframes move {
    0% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(120%, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(-500px, 0px) rotate(0deg);
    }
  }

  .anim-M {
    background-image: url(M-Marmoroptik.png);
    opacity: 1;
    background-size: 352px;
    background-repeat: no-repeat;
    height: 230px;
    width: 150px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-M {
    animation-duration: 6s;
    animation-name: move-2;
    animation-iteration-count: infinite;
  }
  
  @keyframes move-2 {
    0% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(30vw, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
  }

  .anim-e {
    background-image: url(e-Holzoptik.png);
    opacity: 1;
    background-size: 305px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-e {
    animation-duration: 3s;
    animation-name: move-2;
    animation-iteration-count: infinite;
  }
  
  @keyframes move-2 {
    0% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(30vw, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
  }

  .anim-n-1 {
    background-image: url(n-Tarrazzooptik.png);
    opacity: 1;
    background-size: 345px;
    background-repeat: no-repeat;
    height: 230px;
    width: 150px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-n-1 {
    animation-duration: 4s;
    animation-name: move-2;
    animation-iteration-count: infinite;
  }
  
  @keyframes move-2 {
    0% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(30vw, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
  }

  .anim-T {
    background-image: url(T-Lederoptik.png);
    opacity: 1;
    background-size: 280px;
    background-repeat: no-repeat;
    height: 230px;
    width: 120px;

    position: absolute;
    top: 1750px;
    left: 25px;

  }

  .anim-T {
    animation-duration: 5s;
    animation-name: move-2;
    animation-iteration-count: infinite;
  }
  
  @keyframes move-2 {
    0% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
    
    50% {
      transform: translate(30vw, 0px) rotate(0deg);
    }
    
    100% {
      transform: translate(100vw, 0px) rotate(0deg);
    }
  }


  

 