Is there a way to eliminate the hover effect on my 'h3' tag (lighter grey hover effect), while keeping it as a link inside my 'a' tag?
.speakers a {
color: var(--clr-grey);
}
.speakers a:hover {
color: var(--clr-lgrey);
}
<div class="speakers">
<a href="#">
<h3>Tessa Harmon</h3>
Crafty Coding: Generating Knitting Patterns
</a>
<a href="#">
<h3>Russ Unger</h3>
From Muppets to Mastery: Core UX Principles from Mr. Jim Henson
</a>
</div>