html, body {
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.wrapper {
    width: 505px;
    margin: 0 auto;
    margin-top: 2em;
}

#instructions {
    /*float: left;*/
    font-family: sans-serif;
    color: #757575;
}

#score {
    /*float: left;*/
    color: red;
    font-size: 1.5em;
}
#high-score, #high-gems {
    /*float: left; */
    color: orange;
    font-size: 2em;
}
.key {
    color: blue;
}

#game-over, #game-over-overlay {
    margin: auto;
    width: 505px;
    height: 606px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
}
#game-over-overlay {
    background-color: black;
    opacity: .5;
}

#game-over {
    height: 200px;
    text-align: center;
    color: white;
}

#game-over h1 {
    font-size: 3em;
    font-family: sans-serif;
}

#game-over button {
    font-size: 1.5em;
}