@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

.container {
  width: 100%;
  height: 100vh;
  margin-top: 60px;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container .logo {
  margin: 25px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.container .logo img {
  width: 10px;
}

.container .logo span {
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.01rem;
}

.container .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content h1 {
  font-size: 2.5rem;
  color: rgb(59, 59, 59);
  margin-bottom: 15px;
  text-align: center;
}

.content p {
  max-width: 500px;
  margin-bottom: 150px;
  color: #949494;
  text-align: center;
  font-weight: 300;
  font-size: 0.83rem;
  line-height: 1.4rem;
}

.content span {
  font-size: 0.6rem;
  color: #949494;
  letter-spacing: 0.1rem;
  text-align: center;
}

.scroll {
  width: 60%;
  margin-top: 30px;
  overflow: hidden;
  display: grid;
  gap: 20px;
}

.scroll .tape {
  height: 40px;
  width: 100%;
  display: flex;
  mask-image: linear-gradient(
    to right,
    rgba(0,0,0,0),
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 80%,
    rgba(0,0,0,0)
  );
  position: relative;
  overflow: hidden;
}

.scroll .tape img {
  height: 40px;
  width: 120px;
  margin: 0 10px;
  filter: grayscale(100%);
  object-fit: contain;
  object-position: center;
  opacity: .5;
  transition: opacity .3s ease, filter .3s ease;
}

.scroll .to-left img {
  position: absolute;
  top: 0;
  left: max(calc(120px * 10), 100%);
  animation-name: scroll-left;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: calc(40s / 10 * (10 - var(--time)) * -1);
}

.scroll .to-right img {
  position: absolute;
  top: 0;
  right: max(calc(120px * 10), 100%);
  animation-name: scroll-right;
  animation-duration: 40s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-delay: calc(40s / 10 * (10 - var(--time)) * -1);
}

.scroll .tape:hover img {
  animation-play-state: paused;
}

.scroll .tape img:hover {
  opacity: 1;
  filter: none;
}

@keyframes scroll-left {
  to {
    left: -100px;
  }
}

@keyframes scroll-right {
  to {
    right: -100px;
  }
}