body{
    background-color:lightblue;
    color:black;
    font-size:20px;
    font-weight:bold;
   
}

.dog{
    font-size:20px;
    font-weight:bold;
    color:blue
}
a:hover {
    animation: rotate-pColor 3s forwards;
}
li:hover {
    animation: rotate-pColor 3s forwards;
}
img.filtered-image {
    animation: sepiaFilter 2s forwards;
}

@keyframes rotate-pColor {
    from {
        color:black;
        background-color:white;
    }
    
    to {
       color:navy;
        background-color:beige;
    }
}
h1 {
    font-family:cursive; 
}