* {
    box-sizing: content-box;
    margin:0;
    padding:0;
}

body {
    background-color: black;
}

main {
    background-color: black;
}

nav {
    width: 100%;
    height: 2em;   
    background-image:linear-gradient(to bottom, #291C45, transparent);
    margin: 0;
}
nav p {
    height:100%;
    width:100%;
    text-align: center;
    font-size: 1.5em;
    font-style: normal;
    line-height: 1.5em;
}

nav p a {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    display:inline-block;
    background-color: transparent;
    color:white;
    font-style: bold;
    text-decoration: none;
    width:7%;
    height: 100%;
    margin: 0 3%;
    text-align: center;
    letter-spacing: 2px;
}

nav p a:hover {
    background-color: #FAB800;
    color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

#copyright {
    width:20%;
    color:lightgray;
    font-style: italic;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.8em;
    margin: auto;
    position:static;
    bottom:10px; 
}