/* Photo wallpaper — pairs with the body::before / .mb-wallpaper::before layer
   declared in theme-tokens.css (which supplies position/inset/z-index and the
   blush fallback color). Kept out of the webpack bundle on purpose: css-loader
   can't resolve the root-relative URL, and the static chapter pages need the
   same rule. Linked from public/index.html and each static chapter page;
   index.html also preloads the image at high priority. */

.mb-wallpaper::before,
body::before {
  background-image: url("/assets/wallpaper-clouds.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
