/* Match the screenshot: simple centered layout on a light page. */

:root {
  --bg: #f4f4f4;
  --text: #2b2b2b;
  --muted: #5a5a5a;
  --btn: #0b0b0b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 108px; /* places content in top third like the screenshot */
}

.card {
  text-align: center;
  width: min(720px, calc(100% - 32px));
}

.title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: clamp(28px, 2.2vw, 42px);
}

.subtitle {
  margin: 18px 0 22px;
  font-size: clamp(13px, 1.05vw, 18px);
  line-height: 1.45;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 14px;
  background: var(--btn);
  color: #fff;
  text-decoration: none;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  /* box-shadow: 0 10px 18px rgba(0, 0, 0, 0.22); */
}

.btn:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

.btn:hover {
  background: #000;
}

