/* Holding page: "Coming soon" and the support email, centred. System fonts only. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  background: #ffffff;
  color: #0f1b2d;
  font-family: ui-sans-serif, system-ui, 'Segoe UI', Roboto, Arial, sans-serif;
}
main {
  min-height: 100dvh;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
h1 {
  margin: 0;
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
}
p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}
a {
  color: #4a5568;
  text-underline-offset: 3px;
}
a:hover {
  color: #0f1b2d;
}
:focus-visible {
  outline: 2px solid #0b5cad;
  outline-offset: 2px;
}
