/* ==UserStyle==
@name           dance
@namespace      github.com/evtn
@version        1.0.0
@description    yeah
@author         evtn
==/UserStyle== */
@-moz-document regexp(".+") {
    body {
        animation-duration: 0.6s;
        animation-iteration-count: infinite;
        animation-name: fuckit;
        animation-timing-function: ease-in-out;
    }
    @keyframes fuckit {
        0% {
            letter-spacing: 0;
        }

        50% {
            letter-spacing: -0.05em;
        }

        100% {
            letter-spacing: 0;
        }
    }
}
