#jus{
    position: relative;
}
iframe{
    border: 3px solid rgb(255, 0, 208);
    position:absolute;
    top:0;
    left:0;
    animation: anim 8s linear 0s infinite forwards running;
}
iframe:nth-child(2){
  animation-delay: 3s;
}
iframe:nth-child(3){
    animation-delay: 1s;
}
iframe:nth-child(4){
    animation-delay: 0,8;
  
}

img{
    width: 30%;
    margin-top: 40px;
    margin-bottom: 40px;
}
body{
    text-align: center;
    min-height: 300vh;
    background-image: url("etoile.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: rgb(255, 102, 0);

}

@keyframes anim{
    0% {top: 100px; left: 0;}
    25% {top: 100px;left:65%;}
    50%{top:65%; left: 63%;}
    75%{top: 70%; left: 0%;}
    100%{top: 100px;left: 0;}
}

#larry{
    border: 3px solid rgb(255, 0, 208);
    position:absolute;
    top:0;
    left:0;
    animation: anim 8s linear 0s infinite forwards running;
}
#larry:nth-child(2){
  animation-delay: 3s;
}
#larry:nth-child(3){
    animation-delay: 1s;
}
#larry:nth-child(4){
    animation-delay: 0,8;}