When I hover directly over the link, it changes color. However, when I hover over the button and not the link itself, the color does not change.
btn:hover{
color: black;
}
The above code is not working as intended.
a:hover{
color:black
}
Currently, this code is functional but it does not achieve the desired result.
How can I make the button change the color of the link when hovered over?
This behavior can be observed in the first image.