:root {
  --bg: #020304;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
  background: var(--bg);
}

html {
  touch-action: none;
}

body {
  position: fixed;
  inset: 0;
  background: var(--bg);
}

.final-screen {
  width: 100vw;
  height: 100vh;
  height: 100svh;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.wordmark-stage {
  width: clamp(110px, 11vw, 160px);
}

.wordmark-stage svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

@media (max-width: 700px) {
  .wordmark-stage {
    width: min(29vw, 120px);
  }
}
