:root {
  color-scheme: dark;
  background: #000;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: #000;
}

body {
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
}

.stage {
  position: relative;
  display: flex;
  width: min(92vw, 560px);
  min-height: min(92svh, 680px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.fire-frame {
  width: auto;
  max-width: 82vw;
  height: min(72svh, 640px);
  aspect-ratio: 941 / 1672;
  flex: 0 0 auto;
}

#fire {
  display: block;
  width: 100%;
  height: 100%;
}

.wordmark {
  margin: 22px 0 0;
  color: rgba(226, 215, 192, 0.88);
  font-size: clamp(0.7rem, 1.7vmin, 0.92rem);
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1;
  text-indent: 0.25em;
  white-space: nowrap;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  transition: color 180ms ease, opacity 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: #fff;
  outline: none;
}

.social-link:focus-visible {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.social-link svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.social-link svg path {
  fill: currentColor;
  stroke: none;
}

.social-link .social-dot,
.social-link .social-play {
  fill: currentColor;
  stroke: none;
}

@media (prefers-reduced-motion: reduce) {
  #fire {
    opacity: 0.96;
  }
}
