:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

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

body {
  background: #000;
}

.splash {
  min-height: 100svh;
  width: 100%;
  display: grid;
  grid-template-rows: auto auto;
  place-content: center;
  justify-items: center;
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  text-align: center;
}

.logo {
  width: min(76vw, 520px);
  height: auto;
  display: block;
  border-radius: 50%;
}

h1 {
  max-width: 38ch;
  margin: 0;
  font-size: clamp(1.05rem, 2.7vw, 2rem);
  font-weight: 750;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

@media (min-width: 700px) {
  h1 {
    max-width: 42ch;
  }
}
