*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #fafafa;
  overflow: hidden;
}

#scene {
  position: fixed;
  inset: 0;
  background: #08060f;
}

#blobs {
  position: fixed;
  inset: 0;
  filter: url(#goo);
}

.blob {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

#ui {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
}

#hint {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  transition: opacity 1s ease;
}
