Changing the color of the logo can be a bit tricky considering that the logo is an image, not a text element. You can change the color of the image by adding a sepia filter along with a hue-rotate filter to give it some color. We will also add a saturate filter to make the color pop a bit more :)
.logo {
filter: sepia(100%) hue-rotate(45deg) saturate(100);
}
Make sure to play with the hue-rotate() filter to get the color you want :)
You can also modify the saturate() filter to make the logo less/more saturated.
Hope this helps!
hue-rotate(0deg): standard white
hue-rotate(45deg): green
hue-rotate(95deg): cyan
hue-rotate(200deg): light pink
hue-rotate(250deg): darker pink
hue-rotate(300deg): orange
hue-rotate(350deg): yellow