@keyframes flashRed {

    0%,
    100% {
        background-color: transparent;
    }

    50% {
        background-color: red;
    }
}

.flash {
    animation: flashRed 1s infinite;
}