.fake {
    color: darkred;
}


/*ANIMATION DE BRUITAGE (~comme les anciennes télévisions)*/
html body .background_parasite {    /*Prend le dessus sur la plupart des autres déclarations*/
    background-image: url("https://t3.ftcdn.net/jpg/00/13/13/96/240_F_13139661_MDuMHH1xk9Ae0zrS2T7kclB3HKQ4J6gV.jpg");
    animation-name: background_defaillance;
    animation-duration: 0.25s;
    animation-iteration-count: infinite;
    background-size: unset;
    background-repeat: repeat;
    background-position: unset;
}

@keyframes background_defaillance {
    from { background-position: center; }
    25% { background-position: bottom; }
    50% { background-position: top; }
    75% { background-position: right; }
    to { background-position: left; }
}


a:nth-child(2n) .background_parasite {
    animation-delay: 0.05s;
}
a:nth-child(3n) .background_parasite {
    animation-delay: 0.1s;
}
a:nth-child(4n) .background_parasite {
    animation-delay: 0.15s;
}
a:nth-child(5n) .background_parasite {
    animation-delay: 0.2s;
}