span {
    font-size: 50px;
}
/* unvisited link */
a:link {
    color: white;
    text-decoration:underline;
    font-size: 50px;
}

/* visited link */
a:visited {
    color: white;
    text-decoration:underline;
    font-size: 50px;
}

/* mouse over link */
a:hover {
    color: lightblue;
    text-decoration: underline;
    font-size: 50px;
}

/* selected link */
a:active {
    color: white;
    text-decoration: underline;
    font-size: 50px;
}

p{
    color:white;
    font-size: 50px;
}

body
{
    /*background-image:url('wall.jpg');*/
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-color:darkslateblue;
    color:lightgreen;
    font-size: 50px;
}

ul {
    list-style-type:none;
}

td{
    text-align:left;
    vertical-align:top;
}


