Project 1: Dasmotos Arts & Craftpage - Code Review

Appreciate any feedback on my first project. You can review the code bellow or on git

index.html code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dasmoto's Arts & Craft</title>
    <link rel="stylesheet" href="./resources/css/styles.css">
</head>
<body>
    <!--PAGE HEADER-->
    <div id="header_background">
        <h1 class="header_text">Dasmoto's Arts & Crafts</h1>
    </div>
    <!--BRUSHES SECTION-->
    <div class="brushes">
        <p class="section_title brush_background">Brushes</p>
        <img src="./resources/images/hacksaw.jpeg" alt="paint brushes">
        <p class="heavy_text">Hacksaw Brushes</p>
        <p>Made of the highest quality oak. Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Availible in different sizes. 
            <span class="pricing_text">Starting at $3.00 / brush.</span>
        </p>
    </div>

    <!--FRAMES SECTION-->
    <div class="frames">
        <p class=" section_title frames_background">Frames</p>
        <img src="./resources/images/frames.jpeg" alt="picture frames">
        <p class="heavy_text">Art Frames (assorted)</p>
        <p>Assorted frames made of different material, including MD, birchwood, and PDE. Select frames can be sanded and painted according to your needs.
            <span class="pricing_text">Starting at $2.00 / frame</span>
        </p>
    </div>

    <!--PAINT SECTION-->
    <p class=" section_title paint_background">Paint</p>
    <img src="./resources/images/finnish.jpeg" alt="paint tubes">
    <p class="heavy_text">Clean Finnish Paint</p>
    <p>Imported paint from Finland. Over 256 colors available in-store, varying in quantity (1 oz. to 8 oz.). Clean Finnish paint microbinds to canvas, 
        increasing the finish and longevity of any artwork.<span class="pricing_text">Starting at $5.00 / tube</span>
    </p>


</body>
</html>```

**styles.css Code:** 

#header_background {
width: 100%;
height: 100%;
background-image: url(‘…/images/pattern.jpeg’);
}

.header_text {
font-family: Helvetica;
font-size: 100px;
font-weight: bold;
color: khaki;
text-align: center;
}
.section_title {
font-family: Helvetica;
font-size: 32px;
font-weight: bold;
color: white;

}

.brush_background {
background-color: mediumspringgreen;
}
.frames_background {
background-color: lightcoral;
}
.paint_background {
background-color: skyblue;
}

.pricing_text{
font-family: Helvetica;
font-weight: bold;
color:blue;
}
.heavy_text {
font-weight: bold;
}