<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Example</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<style>
h1 { 
    text-align: center;
    font-size: 15in;

}
body {
    text-decoration-color: darkgoldenrod;
    background-color:darkslategrey;
}
ul {
    list-style-type: circle;
    font: bold;

}
a:link {
    color:firebrick;
    font-weight: bold;
}
a:visited{
    color:gold;
    font-size: 10cm;
}
a:hover{
    color:hotpink;
}
a:active{
    color:midnightblue;
}
#NFLPIC {
    width: 2in;
    height: 2in;
}
p {
    font-style: italic;
    font-weight: bold;
}
ol {
    font-style: italic;
    font-weight: bolder;
}


</style>
</html>

