/* Keep the page background image in its existing Argon pseudo-element. */
html.hasaki-page-parallax #content::before,
html.hasaki-page-parallax #content::after {
	transform: translate3d(var(--hasaki-parallax-x, 0px), var(--hasaki-parallax-y, 0px), 0) scale(1.1);
	transform-origin: center center;
	backface-visibility: hidden;
	will-change: transform;
}

@media (prefers-reduced-motion: reduce), (hover: none), (pointer: coarse) {
	html.hasaki-page-parallax #content::before,
	html.hasaki-page-parallax #content::after {
	transform: none;
	will-change: auto;
	}
}
