CSS Background-image not working properly; Dasmoto's Arts & Crafts Question

I am currently on the project titled “Dasmoto’s Arts and Crafts”, inside of the skill path “Build a Website with HTML, CSS, and GitHub Pages Skill Path”, I have had problems with my code when comparing my code to the solution.
My HTML code is as follows, which is correct. I used the default HTML5 boilerplate in visual studio and built off of it from there.

Then my CSS code:
START OF CSS
body {
font-family: Helvetica;
}

#header {
font-size: 100px;
text-align: center;
font-weight: bold;
color: khaki;
}

.header_body {
background-image: url(“https://s3.amazonaws.com/codecademy-content/courses/freelance-1/unit-2/pattern.jpeg”);
}

.subheader {
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;
}

#brusheshead {
background-color: mediumspringgreen;
}

#frameshead {
background-color: lightcoral;
}

#painthead {
background-color: skyblue;
}

.price {
font-weight: bold;
color: blue;
}
END OF CSS

and I have the correct folder setup

But the background image is not showing, no matter what I do. If I use a link, the path, quotation marks, no marks. Nothing works. Please if you can help me with this and I will be happy to assist you as well.

Hello, you can find an answer to your problem here!