#zwischensequenz_raumschiff_duese {
    -webkit-animation-name: anim_duese;
    -webkit-animation-duration: 0.1s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease; 
    -webkit-animation-fill-mode: forwards;
  }
  
  @-webkit-keyframes anim_duese {
    25% { opacity: 0.5;}
    75% { opacity: 0.8;}
  }

#zwischensequenz_raumschiff_back {
    -webkit-animation-name: anim_speadline2;
    -webkit-animation-duration: 7.0s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease; 
    -webkit-animation-fill-mode: forwards;
  }
  
  @-webkit-keyframes anim_speadline2 {
    0% { opacity: 0.1;}
    25% { opacity: 0.2;}
    75% { opacity: 0.4;}
    100% { opacity: 0.2;}
  }

  #zwischensequenz_container_raumschiff {
    -webkit-animation-name: anim_raumschiff;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear; 
    -webkit-animation-fill-mode: forwards;

  }
  
  @-webkit-keyframes anim_raumschiff {
    0% { -webkit-transform: rotate(0deg) scale(0.0) skew(0deg) translateX(-280%) translateY(-170%) ;}
    100% { -webkit-transform: rotate(0deg) scale(1.0) skew(0deg) translateX(180%) translateY(110%) ;}
  }
/* STERNSCHNUPPEN */
body{
  overflow: hidden;
}
section{
  position: absolute;
  top: 18%;
  left: 0;
  width: 100%;
  height: 110vh;
  /* https://lh3.googleusercontent.com/ka_5IYJDRkXZnbptxq64LPuggGL5FM8gnpJlsuSiOQh4b39kMkiRbVfX8iK8bjMg5SLkdfoix09P60wyFjN2=w681-h614 */
  /*background: url("https://i.postimg.cc/c1Q3njM0/bg2.jpg");
/*   background-color:black; */
  /*background-size: cover;*/
  animation: animateBg 50s linear infinite;
}

@keyframes animateBg{
  0%,100%{
      transform: scale(1);
  }
  50%{
      transform: scale(1.2);
  }
}

span{
  position: absolute;
  top:50%;
  left:50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.1),0 0 0 8px rgba(255,255,255,0.1),0 0 20px rgba(255,255,255,0.1);
  animation: animate 3s linear infinite;
}
span::before{
  content:'';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg,#fff,transparent);
}
@keyframes animate
{
  0%
  {
      transform: rotate(315deg) translateX(0);
      opacity: 1;
  }
  70%
  {
      opacity: 1;
  }
  100%
  {
      transform: rotate(315deg) translateX(-1000px);
      opacity: 0;
  }
}

span:nth-child(1){
  top: 0;
  right: 0;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1s;
}
span:nth-child(2){
  top: 0;
  right: 10%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 3s;
}
span:nth-child(3){
  top: 80;
  right: 30%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 2s;
}
span:nth-child(4){
  top: 0;
  right: 40%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1.5s;
}
span:nth-child(5){
  top: 0;
  right: 50%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 2.5s;
}
span:nth-child(6){
  top: 0;
  right: 70%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 3s;
}
span:nth-child(7){
  top: 80%;
  right: 0px;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1.75s;
}
span:nth-child(8){
  top: 0px;
  right: 75%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 1.25s;
}
span:nth-child(9){
  top: 0px;
  right: 90%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 2.25s;
}
span:nth-child(9){
  top: 0px;
  right: 55%;
  left: initial;
  animation-delay: 0s;
  animation-duration: 2.75s;
}

/* STERNSCHNUPPEN ENDE*/