/* Disable margin */
body, h1, h2, h3, h4, h5, h6, p {
    margin:0px;
}

/* Links */
a:link {
    background-color:navy;
    color:white;
    text-decoration:none;
}

a:visited {
    background-color:purple;
    color:white;
    text-decoration:none;
}

a:hover {
    text-decoration:underline;
}

/* Header */
div#header {
    width:100%;
    background-color:navy;
    border-bottom:5px solid blue;
    text-align:center;
    color:white;
}

/* Basic Formatting */
.center {
    text-align:center;
}
