issue with color fonts: white in frontpage only

Hello,
I have customized CSS to allow me to have all frontpage chars in white colour as per below CSS:
body {
line-height: 26px;
background-color: #fff;
font-family:“raleway”;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
}

The problem I have now is that all other pages also have white chars and this is a problem!
Example:
http://funzionamente.it/corso-mindfulness-mbsr/

how could I resolve this?

Thanks in advance,
Umberto

Hello Umberto

If you want your css to work only on homepage use this code:

body.home {
line-height: 26px;
background-color: #fff;
font-family:”raleway”;
font-weight: 400;
font-size: 16px;
color: #FFFFFF;
}