img{
    animation:invertFilter 10s forwards;
}

@keyframes invertFilter{
    from{
        filter:invert(100%);
    }
    to{
        filter:invert(0%);
    }
}

body,h1,a{
    background-color:red;
    color:white;
    font-size:150px;
}