@import 'https://fonts.googleapis.com/css?family=Modak';

@keyframes niccat
{
    from
    {
        background-position: 0 0;    
    }
    to 
    {
        background-position: 100% 100%;
    }
}
body
{
    background: url(img/niccat.jpg) repeat;
    animation: niccat 15s linear infinite;
}

h1
{
    text-align: center;
    font-family: 'Modak', cursive;
    font-size: 112px;
    color: teal;
    font-weight: 400;
}

img
{
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    
}