@charset "utf-8";

@keyframes hueRotate {
    100% {
        filter: hue-rotate(360deg);
    }
}
.hueRotate {
    animation-name: hueRotate;
    animation-duration: 2s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}