Dasmoto’s Arts & Crafts review

Hello, I completed the Dasmoto’s Arts & Crafts project and wanted some review/feedback on the code.
Please share your thoughts. Please and thanks!

<!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">
    <link rel="stylesheet" href="./resources/css/index.css">
    <title>Dasmoto's Arts & Crafts</title>
</head>
<body>
    <header>
        <h1 id="main-header">Dasmoto's Arts & Crafts</h1>
    </header>
    <main>
        <!--Brushes-->
        <section>
          <h2 class="section-heading" id="section-heading-brush">Brushes</h2>
          <figure>
            <img  class="figcaption-img" src="./resources/images/hacksaw.jpeg" alt="Hacksaw Brushes">
            <figcaption class="figcaption-text">Hacksaw Brushes</figcaption>
          </figure>
          <p class="section-paragraph">Made of the highest quality oak, Hacksaw brushes are known for their weight and ability to hold paint in large amounts. Available in different sizes. <span>Starting at $3.00 / brush.</span></p>
       </section>
       <!--Frames-->
       <section>
        <h2 class="section-heading" id="section-heading-frame">Frames</h2>
        <figure>
            <img class="figcaption-img" src="./resources/images/frames.jpeg" alt="Art Frames (assorted)">
            <figcaption class="figcaption-text">Art Frames (assorted)</figcaption>
        </figure>
        <p class="section-paragraph">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>
       </section>
       <section>
        <h2 class="section-heading" id="section-heading-paint">Paint</h2>
        <figure>
            <img class="figcaption-img" src="./resources/images/finnish.jpeg" alt="Clean Finnish Paint">
            <figcaption class="figcaption-text">Clean Finnish Paint</figcaption>
        </figure>
        <p class="section-paragraph">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>
       </section>
    </main>
</body>
</html>


* {
    padding: 0;
    margin: 0;
    font-family: Helvetica;
}

#main-header {
    font-size: 100px;
    font-weight: bold;
    color: khaki;
    text-align: center;
    background-image: url("../images/pattern.jpeg");
    margin: 60px 10px;
}

.section-heading {
    font-size: 32px;
    font-weight: bold;
    color: white;
    margin: 20px 10px;
}

.figcaption-img {
    margin-left: 10px;
}

.figcaption-text {
    font-weight: bold;
    font-size: 20px;
    margin: 10px;
}

.section-paragraph {
    margin-left: 10px;
}

.section-paragraph span {
    font-weight: bold;
    color: blue;
}


/* brush */
#section-heading-brush {
    background-color: mediumspringgreen;
}

/* frame */
#section-heading-frame {
    background-color: lightcoral;
}

/* paint */
#section-heading-paint {
    background-color: skyblue;
}