:root {
  color-scheme: light;
  --paper: #fbfaf6;
  --ink: #171717;
  --muted: #6c665d;
  font-family:
    ui-rounded, "SF Pro Rounded", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Display",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 30px;
  padding: 32px;
  text-align: center;
}

.app-icon {
  width: 132px;
  height: 132px;
  border-radius: 30px;
  box-shadow: 0 18px 50px rgba(60, 70, 44, 0.18);
}

h1 {
  margin: 0;
  font-size: 4.75rem;
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0;
}

@media (max-width: 520px) {
  .app-icon {
    width: 108px;
    height: 108px;
    border-radius: 24px;
  }

  h1 {
    font-size: 3.5rem;
  }
}
