*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica Neue, Arial, sans-serif;
  overflow: hidden;
}

.scene {
  background: radial-gradient(at 50% 55%, #e91e90 0%, #a0148a 30%, #4a0e6b 65%, #1a0a3e 100%);
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  position: relative;
}

.grid {
  pointer-events: none;
  background-image: linear-gradient(to right, #ffffff0f 1px, #0000 1px), linear-gradient(#ffffff0f 1px, #0000 1px);
  background-size: 60px 60px;
  position: absolute;
  inset: 0;
}

.sprite-container {
  z-index: 1;
  pointer-events: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.sprite {
  object-fit: contain;
  opacity: 0;
  width: auto;
  max-width: 80vw;
  height: auto;
  max-height: 60vh;
  transition: opacity .3s;
  display: block;
}

.sprite.visible {
  opacity: 1;
}

.subtitle {
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #ffffff80;
  opacity: 0;
  white-space: nowrap;
  font-size: clamp(.75rem, 1.5vw, 1rem);
  font-weight: 300;
  transition: opacity .8s;
  position: absolute;
  bottom: 12vh;
  left: 50%;
  transform: translateX(-50%);
}

.subtitle.visible {
  opacity: 1;
}

.scene:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(circle, #e91e9040 0%, #0000 70%);
  border-radius: 50%;
  width: 40vw;
  height: 40vw;
  animation: 4s ease-in-out infinite pulseGlow;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes pulseGlow {
  0%, 100% {
    opacity: .4;
    transform: translate(-50%, -50%)scale(1);
  }

  50% {
    opacity: .7;
    transform: translate(-50%, -50%)scale(1.15);
  }
}

@media (orientation: portrait) {
  .sprite {
    max-width: 70vw;
    max-height: none;
  }
}

@media (width <= 768px) {
  .grid {
    background-size: 40px 40px;
  }

  .subtitle {
    letter-spacing: .25em;
    bottom: 8vh;
  }
}

@media (width <= 480px) {
  .grid {
    background-size: 30px 30px;
  }

  .sprite {
    max-width: 80vw;
  }
}
/*# sourceMappingURL=pulse.4d663569.css.map */
