
body{
    background-color: gray;
}

/*basic link setup*/
a:link{
    color: black;
    text-shadow: 4px gray;
}

a:visited{
    color: black;
    text-shadow: 4px black;
}


/*nav bar*/
ul{
    list-style-type: none;
    margin: 4px;
    padding: 4px;
    font-size: 30px;
    background-color: transparent;
    width: 95%;
    text-align: right;
    border-radius: 10px;
    position: fixed;
}

li{
    display: inline;
}

li a{
    background-image: linear-gradient(white, gray);
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Arial Narrow Bold', sans-serif;
}

li a:hover{
    background-image: linear-gradient(gray, white);
    border-radius: 5px;
    text-decoration: none;
}

/*div stuff */
.mainText{
    width: 50%;
    height: 100%;
    text-align: left;
    padding: 20px;
    border-right: 2px solid black;
    overflow: hidden;
}

.headerText{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    background-color: white;
    border-bottom: 2px solid black;
    font-family:'Courier New', Courier, monospace;
}

.bottomText{
    position:fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: white;
    border-top: 2px solid black;
    font-family: 'Courier New', Courier, monospace
}