:root {
  --duration: 80s;
  --scroll-start: 0;
  --scroll-end: -100%;
  --color-black: #000000;
}

* {
  box-sizing: border-box;
}

body {
  width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-black);
}

.marquee {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  user-select: none;
}

.marquee__group {
  flex-shrink: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  min-width: 100%;
  animation: scroll-y var(--duration) linear infinite;
}

@keyframes scroll-y {
  from {
    transform: translateY(var(--scroll-start));
  }
  to {
    transform: translateY(var(--scroll-end));
  }
}

/* Parent wrapper */
.wrapper {
  display: flex;
  flex-direction: column;
  margin: auto;
  max-width: 100vw;
  height: 100vh;
}

@keyframes fade {
  to {
    opacity: 0;
    visibility: hidden;
  }
}


.image {
  width: calc(100%/6);
  border: 1px solid var(--color-black);
}