/* Deliberately minimal. This page exists to prove the web server works,
   not to be the design. */

:root {
  --navy: #14284b;
  --red: #c8102e;
  --paper: #f4f2ef;
  --muted: #6b7280;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: var(--paper);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--navy);
}

.card {
  width: min(32rem, 100%);
  padding: 3rem 2rem 2.25rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 2px rgb(20 40 75 / 8%), 0 8px 28px rgb(20 40 75 / 8%);
  text-align: center;
}

.logo {
  width: min(22rem, 100%);
  height: auto;
}

.note {
  margin: 2rem 0 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
