@keyframes chrimboText {
    0% {
        color: #300;
    }
    10% {
        color: #f90;
    }
    20% {
        color: #f60;
    }
    40% {
        color: #900;
    }
    55% {
        color: #f00;
    }
    70% {
        color: #c90;
    }
    90% {
        color: #900;
    }
    100% {
        color: #600;
    }
}


p.chrimbo {
    font-size: 1.1rem;
    padding: 0;
    line-height: 1.45;
    width: 75%;
    max-width: 500px;
    border: 2rem solid;
    background-color: #fff;
    /*background-image: url('/images/chrimbo_border.png');*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center;*/
    box-sizing: border-box;
    border-image-source: url('/images/chrimbo_border.png');
    border-image-slice: 100 100;
    border-image-repeat: round stretch;
    /*border-image-outset: 1rem;*/
    /*border-image-width: 1.5rem;*/
}

p.chrimbo > span {
    font-size: 1.2rem;
    animation-name: chrimboText;
    animation-duration: 8s;
    animation-delay: 0s;
    animation-iteration-count: infinite;
}

p.chrimbo strong {
    font-size: 1.15rem;
}
