* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: #1f2933;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Microsoft YaHei",
    "PingFang SC", sans-serif;
}

.page {
  display: grid;
  min-height: calc(100vh - 64px);
  place-items: center;
  padding: 32px 20px;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 600;
  letter-spacing: 0;
}

.footer {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  color: #1f2933;
}
