If I apply more than one Pseudo element/class into a single element, it is important to define (write code for one) before the other for working on both/all elements.
a:link{
color: cyan;
}
a:visited{
color:orange;
}
a:active{
color:yellow;
}
a:hover{
text-decoration:none;
font-size:1.4rem;
}