CSS not displaying in RWD project

Hi, I’m trying to do the “Build a Survey Form” project, however, the CSS file is not displaying at all, I believe I have linked correctly the file to my HTML file but it doesn’t work, can anyone help?

HTML code:

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <link rel="stylesheet" href="style.css">
    <title>Survey Form</title>
</head>

CSS body code:

body {
    margin: 0;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    color: rgb(221, 221, 221);
    background-image: linear-gradient(45deg, rgb(247, 204, 247), rgb(216, 196, 160), rgb(255, 177, 177) );
}

How it looks:
2022-07-05 11_28_55-Responsive Web Design Projects_ Build a Survey Form _ freeCodeCamp.org — Mozilla

I can’t upload a second image but it shouldn’t look like that, it supposedly has colors, padding, background, etc.

typo I think
usually its styles.css
not style.css

True I just figured it out lol dumb mistake, thanks

We’ve all been there, don’t feel dumb.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.