* {
margin: 0;
padding: 0;
}

body {
background: linear-gradient(45deg, #0095ff, #93132c);
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}

.item {
display: inline-flex;
}

p {
font-family: arial;
font-size: 6em;
color: white;
}

img {
width: 28em;
height: auto;
  -webkit-filter: drop-shadow(0 0 7px black);
  filter: drop-shadow(0 0 1px black);
}


.item {
display: inline-flex;
animation-name: anim;
aniamtion-duration: 4s;
animation-iteration-count: infinite;
position: relative;
overflow: hidden;
}

.sizing {
filter: opacity(0);
}

.container {
position: absolute;
display: flex;
animation-name: anim;
animation-duration: 3s;
animation-iteration-count: infinite;
animation-timing-function: step-end;
}

@keyframes anim {
  0% { left: -0%;   }
  5% { left: -100%; }
  7% { left: -200%; }
 95% { left: -200%; }
100% { left: -100%; }
}
