/* CWhizzRoo — under construction
   Static single page: the logo, centred, on a background that matches the
   artwork's own white (#ffffff). No scripts, no animation. */

*, *::before, *::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  background: #ffffff;            /* identical to the background of assets/logo.jpg */
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 5vw, 72px);
}

.logo {
  display: block;
  width: min(92vw, 1100px);      /* fluid: phones -> desktop */
  height: auto;                  /* preserves the 2448 x 816 aspect ratio */
}

/* Accessible page heading, hidden visually */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}
