@charset "UTF-8";

body {
    background-color: #FBF4E0; /* You can change this color to any desired background color */
}

.animated-gif {
    filter: grayscale(60%);
    transition: filter 0.3s, opacity 0.3s;
    opacity: 0.5;
}

.animated-gif:hover {
    filter: grayscale(0%);
    opacity: 1;
}
