:root {
  --background: #ffffff;
  --surface: #fafafa;
  --foreground: #18181b;
  --muted: #52525b;
  --border: #e4e4e7;
  --accent: #b45309;
  --font-sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.25rem;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.card {
  width: 100%;
  max-width: 34rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04),
    0 12px 32px -12px rgba(0, 0, 0, 0.12);
}

.logo {
  width: auto;
  height: 72px;
  max-width: 100%;
  margin: 0 auto 2.25rem;
}

.content p {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.salutation {
  color: var(--foreground) !important;
  font-size: 1.2rem !important;
  font-weight: 600;
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin: 0 0 1.5rem;
  font-style: normal;
}

.contact .name {
  font-weight: 600;
  color: var(--foreground);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
}

.contact a:hover {
  text-decoration: underline;
}

.farewell {
  color: var(--foreground) !important;
}

.construction {
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 1rem auto 0;
}

@media (max-width: 480px) {
  .card {
    padding: 2.25rem 1.5rem;
  }

  .logo {
    height: 60px;
  }
}
