:root {
  color-scheme: dark;
  --bg: #000000;
  --text: rgba(255, 255, 255, 0.85);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial,
    "Apple Color Emoji",
    "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
}

a {
  color: inherit;
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 48px 20px;
}

.center {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.logoSlot {
  line-height: 0;
}

.logo {
  display: block;
  width: 136px;
  height: auto;
  max-width: 100%;
}

.message {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 520px) {
  .logo {
    width: min(136px, calc(100vw - 40px));
  }
}

