How to fix an almost invisible product title in Dawn theme?

For some reason our Dawn These changed the Product Title to be almost invisible and I cannot figure out how to change it.

https://blackboaratv.com/products/snow-plow

Admin > Online Store > Themes > Customize > Navigate to a product page > Click into “Product Information” from the left-hand menu > then on the right-hand menu scroll down to the “Custom CSS” section > add the following coding > save changes.

h1 {color: #000000;}

This is due to color of h1 tag of the page has been set white.

This can be fixed from theme customizer
open theme custmizer thene select product template

Then click on product information and scroll down below and paste the below code in custom CSS and press save:

.product__title h1 {
  color: black;
}