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

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100svh;
  margin: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    radial-gradient(circle at 50% 38%, rgba(0, 194, 255, 0.14), transparent 32rem),
    linear-gradient(180deg, #0b1118 0%, #070b10 58%, #05070a 100%);
  color: rgba(255, 255, 255, 0.72);
}

.splash {
  display: grid;
  place-items: center;
  padding: 2rem;
}

.logo {
  display: block;
  width: min(46rem, 76vw);
  height: auto;
  filter: drop-shadow(0 1.5rem 3rem rgba(0, 172, 255, 0.14));
}

.footer {
  display: flex;
  justify-content: center;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0;
}

@media (max-width: 640px) {
  .logo {
    width: min(28rem, 88vw);
  }

  .footer {
    padding-bottom: 1.25rem;
    font-size: 0.78rem;
  }
}
