body {
    background-color: #f9c121;
}
.game {
    border: 1px solid #000;
    width: 800px;
    height: 600px;
    position: absolute;
    left: 50%;
    margin-left: -400px;
}

.game .page {
    display: none;
    position: absolute;
    width: 800px;
    height: 600px;
}

.game .page.page-menu {
    background: url(./../imgs/main.png) center center no-repeat;
}

.game .page.page-results {
    background: rgba(0, 0, 0, .55) url(./../imgs/win.gif) center 40% no-repeat;
}

.game .button.button-start{
    width: 100px;
    right: 100px;
    bottom: 100px;
}

.game .button.button-hit{
    width: 130px;
    left: 10px;
    bottom: 10px;
}

.game .button.button-replay{
    width: 200px;
    left: 50%;
    margin-left: -100px;
    bottom: 100px;
}

.game .game-canvas {
    background: url(./../imgs/bg2.jpg) center center no-repeat;
}

.button {
    position: absolute;
    text-align: center;
    cursor: pointer;

    -moz-box-shadow:inset 0 1px 0 0 #fff6af;
    -webkit-box-shadow:inset 0 1px 0 0 #fff6af;
    box-shadow:inset 0 1px 0 0 #fff6af;
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffec64), color-stop(1, #ffab23));
    background:-moz-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background:-webkit-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background:-o-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background:-ms-linear-gradient(top, #ffec64 5%, #ffab23 100%);
    background:linear-gradient(to bottom, #ffec64 5%, #ffab23 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffec64', endColorstr='#ffab23',GradientType=0);
    background-color:#ffec64;
    -moz-border-radius:4px;
    -webkit-border-radius:4px;
    border-radius:4px;
    border:1px solid #ffaa22;
    display:inline-block;
    color:#333333;
    font-family:Arial;
    font-size:21px;
    font-weight:bold;
    padding:6px 18px;
    text-decoration:none;
    text-shadow:0 1px 0 #ffee66;

    outline : 0;
    -moz-outline : 0;
}
.button:hover {
    background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #ffab23), color-stop(1, #ffec64));
    background:-moz-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background:-webkit-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background:-o-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background:-ms-linear-gradient(top, #ffab23 5%, #ffec64 100%);
    background:linear-gradient(to bottom, #ffab23 5%, #ffec64 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffab23', endColorstr='#ffec64',GradientType=0);
    background-color:#ffab23;
}
.button:active {
}

