.zine {
  display:flex; 
  overflow: hidden;
  position:absolute;
  justify-content:flex-start;
  align-items:center;
  padding:0px;
  right:30px;
  bottom:335px;
  width:300px;
  height:auto;
  flex-wrap:nowrap;
  border: 3px solid #516fc4;
}
.zinescroll {
  display:flex;
  animation: z-scroll-left 50s linear infinite;
  width:max-content;
  height:auto;
  flex-wrap:nowrap;
  gap:15px;
  padding:0;
}
.zinescroll img {
  height:320px;
  width:250px;
}
@keyframes z-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}