/* testosterone.com — background image only (for now).
 *
 * Source of truth lives in the dashboard: dash-app/static/testosterone.css
 * The public page (testosterone-app) serves this file same-origin at
 * https://testosterone.com/style.css so it actually loads for visitors —
 * apps.biotest.net/dash/* is behind Cloudflare Access and can't be read
 * by the public.
 */
:root { color-scheme: dark; }

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

html, body { height: 100%; }

body {
  min-height: 100vh;
  min-height: 100dvh;
  background-color: #000;
  background-image: url("/bg.jpeg");
  background-repeat: no-repeat;
  background-position: center top; /* anchor at the top */
  background-size: contain;        /* whole image visible, fit to width */
}