Oh you’re talking about when you highlight the text. It looks like you may have changed it in your css….its located around line 193. Your code is showing that the background is white (#fff), but the demo is black #333 by default. I would just change it back to the black like this –
::selection {
background: #333;
color: #fff;
}