:root {
  --ink: #002048;
  --muted: #5a6b85;
  --paper: #ffffff;
  --accent: #0068d0;
}

* {
  box-sizing: border-box;
  margin: 0;
}

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

body {
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-family: Outfit, system-ui, sans-serif;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem;
  text-align: center;
}

.logo {
  width: min(480px, 86vw);
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mail {
  color: var(--ink);
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.12rem;
}

.mail:hover,
.mail:focus-visible {
  color: var(--accent);
}
