@keyframes album-effects{
    from{
        filter: invert(0%);
    }
    to{
        filter: invert(100%);
    }
}

img.cool-idge{
    animation: album-effects 2s forwards;
}

body{
    background-color: coral;
}