body {
    background-image: url(/res/images/dirt-background-grey.png);
    background-repeat: repeat;
}

.bold {
    font-family: "JetBrains Mono";
    font-weight: bold;    
}

.rainbow {
    animation: rainbow 4.0s linear;
    animation-iteration-count: infinite;
}

@keyframes rainbow {
    100%,0% {
        color: rgb(255,0,0);
    }
    8% {
        color: rgb(255,127,0);
    }
    16% {
        color: rgb(255,255,0);
    }
    25% {
        color: rgb(127,255,0);
    }
    33% {
        color: rgb(0,255,0);
    }
    41% {
        color: rgb(0,255,127);
    }
    50% {
        color: rgb(0,255,255);
    }
    58% {
        color: rgb(0,127,255);
    }
    66% {
        color: rgb(0,0,255);
    }
    75% {
        color: rgb(127,0,255);
    }
    83% {
        color: rgb(255,0,255);
    }
    91% {
        color: rgb(255,0,127);
    }
}
