/*
 * Shared page styling. Deliberately almost empty.
 *
 * This site is one page, so its styling lives with that page
 * (frontend/pages/index/index.css) rather than in a shared sheet nothing
 * else consumes. The file exists because <header-template> hard-codes a
 * <link> to /css/main.css in every page's <head> — see the note in
 * variables.css. Without it that link 404s.
 *
 * What the retired mongo-simple-server base served here was another app's
 * marketing-page CSS (.background-2, .numbertext, a contact-form width) and
 * a webkit scrollbar theme. None of it applied to a page with no scrollbar
 * and no forms, so none of it was carried over.
 *
 * When a second page arrives, whatever the two share goes here.
 */

/* The page is a dark field by design, so tell the UA up front: form
 * controls, scrollbars and the canvas behind the document all follow this,
 * and it costs one declaration instead of a theme. */
:root {
  color-scheme: dark;
}
