p{
     font-size:15px;
     Background-color:Lightblue;
}
body{
    background-color:Tan;
}
img {
    height: 200px;  
}

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



.filtered-image{
    animation: animatedInvert 2s forwards;
}