:root {
  --bg: #f8f8f6;
  --text: #1f1f1d;
  --muted: #7a7a75;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", "SFMono-Regular", "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.coming-soon {
  width: min(100%, 520px);
}

.name,
.email,
.status {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.1rem);
  line-height: 1.9;
  font-weight: 400;
}

.status {
  color: var(--muted);
}

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