* {
    font-family: arial;
}
.title {
    color: black;
    text-align: center;
}

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;
}


/*Checkbox when checked*/
input[type="checkbox"]:checked {
    outline: 2px solid blue;
}

/*Disabled Textbox*/
input[type="text"]:disabled {
    background-color: lightgray;
}

/* Focused Textbox */
#cool:focus {
    background-color: aqua;
}

/* nth Child */
p:nth-child(3) {
    color: orangered;
}