body
{
background-color: LemonChiffon; 
color: Navy;
}
nav {
background-color: LemonChiffon;
height: 50px;
}
nav ul li {
list-style-type: none;
width: 150px;
float: left;
line-height: 50px;
text-align: center;
}
nav ul li:hover {
background-color: LightBlue;
color: LemonChiffon;
}
a { color:red } /* Globally */

/* Each state */

a:visited { text-decoration: none; color:#ff7eb9; }
a:hover { text-decoration: none; color:blue; }
a:focus { text-decoration: none; color:yellow; }
a:hover, a:active { text-decoration: none; color:black }
