My Semantic Solution - Dasmoto’s Arts & Crafts Project Solution

Hey guys!! This will be my first post on the forum!!! My name is Richard but you can call me Pargon!

Today I looked at the solution to the Dasmoto’s project and noticed that they didnt use Semantic html like they suggested, so below I have provided my semantic solution, please feel free to leave any comments or recommendations!!!
HTML:

<!DOCTYPE html>
<html>
	<head>
		<title>Dasmoto's Arts & Crafts</title>
		<link href="./resources/css/styles.css" rel="stylesheet">
	</head>
	<body>
		<header>
			<h1>Dasmoto's Arts & Crafts</h1>
		</header>
		<main>
			<section id="brushes">
				<h2>Brushes</h2>
				<img src="./resources/images/hacksaw.jpeg" />
				<article>
					<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. Available in different sizes. <span>Starting at $3.00 / brush.</span></p>
				</article>
			</section>
			<section id="frames">
				<h2>Frames</h2>
				<img src="./resources/images/frames.jpeg" />
				<article>
					<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>
				</article>
			</section>
			<section id="paint">
				<h2>Paint</h2>
				<img src="./resources/images/finnish.jpeg" />
				<article>
					<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>
				</article>
			</section>
		</main>
	</body>
</html>

CSS:

* {
	font-family: Helvetica;
}

h1, h2, span {
	font-weight: bold;
}

header {
	background-image: url("../images/pattern.jpeg");
	width: 100%;
}

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

article {
	width: 100%;
	margin: 5px 1px;
}

section h2 {
	color: white;
	font-size: 32px;
}

section#brushes h2 {
	background-color: mediumspringgreen;
}

section#frames h2 {
	background-color: lightcoral;
}

section#paint h2 {
	background-color: skyblue;
}

section span {
	color: blue;
}