body{
    background-color: rgb(164, 218, 218);
}
p{
    font-style: italic
}
#blue{
    color: blue;
}
.link{
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}
h1, h2{
    font-family: 'Times New Roman', Times, serif;
}
header p{
    color: rgb(60, 141, 141)
}
main a:active{
    color: yellow;
}
main form input:focus{
    outline: 1px solid blue;
}
main p:hover{
    color: red;
}
main a:visited{ 
    color: aqua;
}
table{
    border: 1px solid black;
}
table tr td{
    border: 1px solid black;
}
table tr td:nth-child(even){
    color: brown;
}
table tr td:first-child{
    color: red;
}
table tr td:last-child{
    font-family: 'Courier New', Courier, monospace;
}
p:first-of-type{
    font-family: 'Times New Roman', Times, serif;
}
p:last-of-type{
    font-family: Arial, Helvetica, sans-serif;
}