body {
    margin: 0;
    width: 100%;
    height: 100%;
    background: black;
    font-family: 'Neucha', arial, serif;
    color: #84a4ff;
}
h1 {
    text-shadow: 0 0 25px #94b4ff;
    font-size: 40px;
    text-align: center;
}
#d {
    border: 5px solid #84a4ff;
    box-shadow: 0 0 25px #84a4ff;
    -webkit-box-shadow: 0 0 25px #84a4ff;
    -moz-box-shadow: 0 0 25px #84a4ff;
    width: 800px;
    margin: auto;
}
#header {
    font-size: 2em;
    background-color: #111;
    background-image: -webkit-gradient(
        linear,
        left bottom,
        left top,
        color-stop(0.0, rgb(21,21,21)),
        color-stop(1.0, rgb(17,17,17))
    );
    background-image: -moz-linear-gradient(
        center bottom,
        rgb(21,21,21) 0%,
        rgb(17,17,17) 100%
    );
    height: 100px;
    font-family: georgia, sans-serif;
    border: solid #222;
    border-width: 2px 0px;
    margin-top: 20px;
}
#header div {
    padding: 10px;
    width: auto;
    float: left;
}
#header ul {
    padding: 10px;
    margin: 0;
    height: 70px;
    list-style-type: none;
    overflow: hidden;
}
#header ul li {
    float: left;
}
#header a {
    color: #84a4ff;
    text-decoration: none;
}
