:root {
  color-scheme: light;
  --background: #ffffff;
  --foreground: #202124;
  --muted: #555b63;
  --focus: #1257ff;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(2rem, 7vw, 6rem) 1.25rem;
}

.intro {
  width: min(100%, 54rem);
  display: grid;
  justify-items: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  text-align: center;
}

.logo {
  width: min(100%, 42rem);
}

h1,
p {
  margin: 0;
}

h1 {
  max-width: 22ch;
  font-size: clamp(1.65rem, 4vw, 3.35rem);
  font-weight: 650;
  line-height: 1.08;
}

p {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
}

@media (prefers-reduced-motion: no-preference) {
  .intro {
    animation: enter 480ms ease-out both;
  }
}

@keyframes enter {
  from {
    opacity: 0;
    transform: translateY(0.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
