/*lab 6 style */
body{
    background-color:gray;
}

h1
{
    text-align: center;
    font-family: "Arial";
    font-style: normal;
    font-size: 40px;
    color: cyan;
}

h2
{
    text-align: center;
    font-family: "Arial";
    font-style: normal;
    font-size: 20px;
    color: navy;
}



p
{
    text-align: right;
    font-family: "Arial";
    font-style: normal;
    font-size: 20px;
    color: maroon;
}

ul
{
    list-style-type: square;
    text-align: left;
    color: orange;
    font-family: "Arial";
    font-style: normal;
    font-size: 20px;
}


*{box-sizing: border-box;}
div.content{
    background-color:#00cc00;
    position:absolute;
    top: 110px;
    left:160px;
    right:160px;
    height:630px;
    border:solid green 1px;
}
div.footer{
    background-color:#ffe44d;
    position:absolute;
    bottom:5px;
    left:5px;
    right:5px;
    height:100px;
    border:solid gold 1px;
}

a:link
{
    color: yellow;
}

a:visited
{
    color: plum;
}

a:hover
{
    color: lawngreen;
}

a:active
{
    color: turquoise;
}

