body {
  background: #000;
  overflow: hidden;
}

main {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  margin: 0;
  top: 0;
}

.marquee {
  margin-top: -1rem;
  --gap: 1rem;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  justify-content: space-around;
  min-width: 100%;
  gap: var(--gap);
  animation: scroll 170s linear infinite;
}

img {
  max-height: 100vh;
}

.img {
  position: relative;
}

.img::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 100px #000, inset 0 0 100px #000, inset 0 0 200px #000, inset 0 0 250px #000;
  z-index: 99;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
#magnifying-glass {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  position: absolute;
  overflow: hidden;
  box-shadow: 0 0 50px rgb(0, 0, 0), 0 0 150px rgb(0, 0, 0);
  background-repeat: no-repeat;
  background-size: 250%;
  transform-origin: 0 0;
  z-index: 9999;
}

.blur-overlay {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  backdrop-filter: blur(6px);
  mask-image: radial-gradient(circle, transparent 100px, black 150px);
  z-index: 888;
}

/*# sourceMappingURL=1-hyperfidelity.css.map */
