.greyback{
    background-color: #eaeaea;
}

.content-rand {
  display: flex;
  position: relative;
  overflow: hidden;
  flex-direction: column;
  object-fit:contain;
height:360px;
justify-content:center;
}


.content-rand img {
    max-height:200px;
  
    }

    .content-rand a{
        display:block;
        object-fit:contain;
    }



@keyframes autoplay {
  0% {
    left: 200%;
   visibility:visible;
  }
  4% {
    left: 50%;
    transform: translate(-50%);
  }
  33% {
    left: 50%;
    transform: translate(-50%);
  }
  45% {
    left: -300%;
  }
  100% {
    left: -600%;
  }
}
#content-rand > * {
  position: absolute;
  left: 50%;
  visibility:hidden;
  left: 0;
  animation: 18s autoplay infinite ease-in-out;
}
#content-rand > *:nth-child(1) {
  animation-delay: 0s;
}
#content-rand > *:nth-child(2) {
  animation-delay: 6s;
}
#content-rand > *:nth-child(3) {
  animation-delay: 12s;
}