Code Review: Dasmoto’s Arts and Crafts Project

Hey everyone! This is my first attempt at the Dasmoto’s Arts & Crafts Project. Any feedback would be greatly appreciated!

Folder Structure:
folder project

HTML : 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dasmoto's Arts & Crafts</title>
    <link rel="stylesheet" href="./resources/css/style.css">
</head>
<body>

    <!--Header-->

    <header class="header-background">
        <h1>Dasmoto's Arts & Crafts</h1>
    </header>

    <!--Main-->

    <h2 id="brushes">Brushes</h2>
    <img src="./resources/img/hacksaw.webp" alt="brushes">
    
    <h3>Hacksaw Brushes</h3>

    <p>Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Avaible in different sizes.<span>Starting at $3.00 / brush.</span></p>

    <h2 id="frames">Frames</h2>
    <img src="./resources/img/frames.webp" alt="frames">

    <h3>Art Frames (assorted)</h3>

    <p>Assorted frames made of different material, including MDF, birchwood, and PDE. Select frames can be sanded and painted according to your needs. <span>Starting at $2.00 / frame.</span></p>

    <h2 id="paint">Paint</h2>
    <img src="./resources/img/finnish.jpeg" alt="paint">

    <h3>Clean Finnish Paint</h3>

    <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>Starting at $5.00 / tube.</span></p>
   
</body>
</html>
CSS :

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

.header-background {
    background-image: url(../img/pattern.webp);
    background-size: cover;
}

body {
font-family: Helvetica;
}

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

#brushes {
    background-color: mediumspringgreen;
} 

#frames {
    background-color: lightcoral;
}

#paint {
    background-color: skyblue;
}

h3 {
    font-family: Helvetica;
}

span {
    font-family: Helvetica;
    font-weight: bold;
    color: blue;
}