@keyframes hover {
    0%   {background-color: rgb(238 245 255);}
    100% {background-color: rgb(220 235 255);}
}
.hover-animation:hover{
    animation-name: hover;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
