/* Плавный переход между страницами */

body{

    opacity:1;

    transition:
        opacity .35s ease,
        transform .35s ease;

}

body.page-leave{

    opacity:0;

    transform:scale(.985);

}