.construct-home-art{
    width:100vw;
    height:100vh;

    object-fit:cover;
    object-position:center;

    transform:translate3d(0, 0, 0);
    transform-origin:center center;

    will-change:transform;
    transition:transform 120ms linear;
}

@media(max-width:750px){

    .construct-home-art{
        width:180vw;
        max-width:none;

        /*
            Tune this instead of transform centering.
            Try 48%, 50%, 52%, etc.
        */
        object-position:50% center;
    }

}

@media(prefers-reduced-motion: reduce){

    .construct-home-art{
        transform:none !important;
        transition:none;
    }

}