When a user hovers over an anchor, I want every other anchor except the one being hovered on to change color. For example, if there are links link1, link2, and link3, when the user hovers over link1, I want the colors of link2 and link3 to change. The same should happen with the other links.
Check out my progress so far here on CodePen
a:hover{color:green}
#link1:hover{color: originalcolor}
#link2:hover{color: originalcolor}
#link3:hover{color: originalcolor}