I attempted to apply the :hover
effect specifically to a link inside a paragraph.
The paragraph with the class .hop is initially hidden, but when I hover over the link, nothing happens.
.hop {
display: none;
}
a.hop2:hover + .hop {
display: block;
}
<p>Check out this <a href="https://www.noisli.com" target="_blank" class="hop2">playlist</a> for coding motivation.</p>
<p class="hop">Stay focused with your code and some good vibes.</p>