h1 {
    color: #EEEEEE;
}

body {
    background-image: url("../image/background.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    text-align: center;
    vertical-align: middle;
}

#menu ul {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 800px;
    height: 100px;
    background: #888;
}

#menu li {
    display: inline;
    padding-left: 100px;
    margin-top: 30px;
    float: left;
}

#menu li a {
    display: block;
    border: 1px solid #666;
    background-color: #ccc;
    padding: 10px;
    text-decoration: none;
    color: #333;
    width: 100px;
    text-align: center;
    font-size: 14px;
}

#menu li a:hover {
    background-color: #2d56be;
    color: #fff;
}