:root {
  color-scheme: light;
  --bg: #ffffff;
  --text: #111318;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.stage {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 5vw, 3rem);
}

.brand {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.25rem, 16vw, 10rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
  word-break: break-all;
}

@media (min-width: 40rem) {
  .brand {
    letter-spacing: 0.1em;
    word-break: normal;
  }
}
