html,
body {
  height: 100%;
  margin: 0;
}

body {
  background: #080808;
  color: #f5eee6;
  font-family: system-ui, Arial, Helvetica, sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.hero {
  text-align: center;
}

.bonfire {
  width: 60vw;
  max-width: 280px;
  height: auto;
  display: block;
}

h1 {
  margin: 0.75rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.bubbles {
  margin-top: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.bubble {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 238, 230, 0.14);
  text-decoration: none;
}

.bubble img {
  display: block;
  filter: brightness(0) invert(1);
}

.bubble:focus {
  outline: 2px solid rgba(245, 238, 230, 0.35);
  outline-offset: 3px;
}

.attribution {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(245, 238, 230, 0.85);
}
