* {
  box-sizing: border-box;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  background: #ffffff;
  color: #000000;
}

a {
  color: inherit;
}

.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.simple-stack {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
}

.simple-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
  text-align: center;
}

p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}
