html{
    background-color: black;
}

.filltext
{
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%,-50%);
    font-size: 180px;
    color: white;
    background-image: url(img/new_york_two.JPG);
    -webkit-text-fill-color: transparent;
    background-clip:inherit;
    -webkit-background-clip: text;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    animation: animate 2s ease-in-out alternate infinite;
}
@keyframes animate
{
    from
    {
        background-position: center 30%;
    }
    to
    {
        background-position: center 70%;
    }
}