/* Shared background system for pages with custom background images */

html::before {
    /* Override the shared.css html::before with background image properties */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-position: center center;
    filter: brightness(0.58) contrast(1.0) blur(4px);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
    -webkit-perspective: 1000;
    perspective: 1000;
}