* {
    font-family: arial;
}

h2 {
    text-align: center;
}


/*Styling For Unvisited Links*/
a:link {
    text-decoration: none;
    color: blue;
}

/*Visited Links*/
a:visited {
    color: red;
}

/* Hovered Links */
a:hover {
    color: orangered;
}

/*Active Links*/
a:active {
    color: lawngreen;
}