:root {
  color-scheme: light;
  --ink: #111418;
  --muted: #5b6670;
  --paper: #f4f8fa;
  --surface: #ffffff;
  --line: #d7e1e5;
  --green: #18715e;
  --navy: #183153;
  --red: #c94738;
}
* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    linear-gradient(135deg, rgb(24 113 94 / 10%), transparent 38%),
    linear-gradient(315deg, rgb(201 71 56 / 12%), transparent 36%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.gateway {
  width: min(720px, 100%);
  text-align: center;
}

.avatar {
  width: 148px;
  aspect-ratio: 1;
  object-fit: cover;
  border: 8px solid var(--surface);
  box-shadow: 0 22px 70px rgb(17 20 24 / 18%);
}

.eyebrow {
  margin: 28px 0 10px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 3.6rem;
  line-height: 1.04;
  letter-spacing: 0;
}

p {
  width: min(580px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--surface);
  font-weight: 800;
}

.button.primary {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

.button:hover {
  border-color: var(--red);
}

@media (max-width: 560px) {
  body {
    padding: 22px;
  }

  h1 {
    font-size: 2.7rem;
  }

  p {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }
}
