body {
    background: #222;

}

h2 {
    color: #666;
    font-family: monospace;
    text-align: center;
}

.background {
    table-layout: fixed;
    border-spacing: 0;
}

.background td {
    padding: 0;
}

.lava,
.actor {
    background: #e55;
}

.wall {
    background: #444;
    border: solid 3px #333;
    box-sizing: content-box;
}

.actor {
    position: absolute;
}

.coin {
    background: #e2e838;
    border-radius: 50%;
}

.player {
    background: #335699;
    box-shadow: none;
}

.lost .player {
    background: rgb(160, 64, 64);
}

.won .player {
    background: green;
}

/*.game {*/
    /*width:100vw;*/
    /*height:100vh;*/
    /*position: absolute;*/
    /*overflow: hidden;*/
    /*bottom:0px;*/
    /*left:0px;*/
/*}*/

#game-wrapper {
    position: absolute;
    display: inline-block;
    width:100vw;
    height:100vh;
    left:0;
    top:0;
}

.game {
    position: absolute;
    overflow: hidden;
    height:100vh;
    width:100vw;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
}