#header #logo {
    background-size: 58px 100px;
    margin-top: -20px;
    margin-right: 32px;
    width: 58px;
    height: 100px;
    animation: filter-animation 7s ease-in-out infinite alternate-reverse;
}
/* modified white.scss with */
/* #d0bbe4 */
/* or #a295af */

/* img.animated { */
/*   animation: filter-animation 5s infinite; */
/* } */

@keyframes filter-animation {
    0% {
        filter: grayscale(100%);
    }

    100% {
        filter: grayscale(0%);
    }
}

body {
    font-family: "Nunito Sans", sans-serif;
    font-size: 17px;
}

h1,h2,h3,h4,h5,h6 {
    font-family: "JetBrains Mono", monospace;
}
