Styles like color: white; set inside the body rule apply to all elements inside the body tag.

<html> <head> <style> body { background-color: lightBlue; color: white; } </style> </head> <body> <h1>The Social Book</h1> <p>Sign up with us</p> </body> </html>]]>

Make sure to type color: white;.