In the keyframes below, what `background-color` does the element have at 50% of the animation?
@keyframes c {
0% { background-color: black; }
50% { background-color: red; }
50% { background-color: blue; }
100% { background-color: white; }
}