body{
    margin:0;
    background:black;

    display:flex;
    justify-content:center;
    align-items:center;

    height:100vh;
    overflow:hidden;
}

/* câmera 3D */
.scene{
    perspective:800px;
}

/* imagem */
.ps1-spin{

    width:350px;

    image-rendering:pixelated;

    animation:
    girar 5s infinite linear,
    jitter 0.08s infinite;

    filter:
    contrast(1.1)
    saturate(0.9)
    blur(0.2px);

    transform-style:preserve-3d;
}

/* GIRO 360 */
@keyframes girar{

    from{
        transform: rotateY(0deg);
    }

    to{
        transform: rotateY(360deg);
    }
}

/* tremida ps1 */
@keyframes jitter{

    0%{
        margin-left:0px;
        margin-top:0px;
    }

    25%{
        margin-left:1px;
        margin-top:-1px;
    }

    50%{
        margin-left:-1px;
        margin-top:1px;
    }

    75%{
        margin-left:1px;
        margin-top:1px;
    }

    100%{
        margin-left:0px;
        margin-top:0px;
    }
}