:root {
  color-scheme: light;
  --ink: #17202a;
  --muted: #5d6773;
  --line: #dce2ea;
  --paper: #f7f8fa;
  --white: #ffffff;
  --green: #17665b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

.page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 28px;
}

.landing {
  width: min(100%, 680px);
  padding: clamp(32px, 7vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 60px rgb(23 32 42 / 10%);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.contact {
  display: inline-flex;
  max-width: 100%;
  margin-top: 28px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--green);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact:hover,
.contact:focus-visible {
  border-color: var(--green);
}
