nav a:link{
    color:rgb(145, 196, 145);
    text-decoration: none;
}
nav a:visited{
    color: rgb(160, 4, 4);
}
nav a:hover{
    color:rgb(255, 167, 255);
    text-decoration:underline;
    font-size: 20px;
}
nav a:active{
    color:yellow;
}
ul li:first-child{
    color: rgb(90, 106, 197);        
    font-weight: bold;  
}
ul li:last-child{
    text-decoration: underline;
}
ul li:nth-child(even){
    background-color:rgb(60, 109, 106);
}
ul li:nth-child(3){
    color:rgb(207, 150, 169);
}
ol li:nth-child(odd){
    color: darkgreen;
}
ol li:nth-child(2){
    font-size: 20px;
}
ol li:last-child{
    background-color: rgb(148, 136, 189);
}
body{
    background-color: rgb(250, 250, 190);
}
