I thinks its because you haven't told the browsers what you are loading.
<LINK REL="Stylesheet" HREF="style.css">
It should be:
Code:
<link rel="stylesheet" type="text/css" href="style.css">
Paul
Edit:
Hmmm on second thoughts I don't think its that as i linked to your stylesheet in the same way and it worked in my browser.
I notice you have an error on the very first line of your code.
Code:
body {background color: white;}
You've missed the dash out:
Code:
body {background-color: white;}
Bit I don't think its that either as it worked when I linked to your page.
Bookmarks