body {
    background-color: black;
    font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue', sans-serif;
    color: white;
    width: 100%;
    min-width: 400px;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

header {
    height: 80px;
    width: 100%;
    background-color: #daa412;
    position: fixed;
    z-index: 10;
}

.header-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 5px;
    left: 20px;
    border-radius: 15px;
}

.header-gh-icon {
    width: 70px;
    height: 70px;
    position: absolute;
    top: 5px;
    right: 20px;
    border-radius: 15px;
}

.header-spacer {
    height: 80px;
}

.page-content {
    min-width: 350px;
    width: 350px;
}

.game-spacer {
    height: 320px;
}

.game-block-wrapper {
    margin: auto;
    display: flex;
    justify-content: center;
}

.game-block {
    min-width: 350px;
    min-height: 300px;
    max-width: 350px;
    min-height: 300px;
    border-style: solid;
    border-color: chocolate;
    background-color: grey;
    position: absolute;
}

.game-bg {
    min-width: 350px;
    min-height: 300px;
    max-width: 350px;
    min-height: 300px;
    position: absolute;
}

.stone {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    min-height: 30px;
    /* for debug */
    /* background-color: green; */
    position: absolute;
}

.stone-img {
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    min-height: 30px;
    position: absolute;
}

.player {
    min-width: 40px;
    min-height: 100px;
    max-width: 40px;
    min-height: 100px;
    /* for debug */
    /* background-color: black; */
    position: absolute;
}

.player-img {
    min-width: 160px;
    min-height: 160px;
    max-width: 160px;
    min-height: 160px;
    position: absolute;
    margin-top: -22px;
    margin-left: -64px;
}

.counter {
    min-width: 80px;
    min-height: 40px;
    max-width: 80px;
    min-height: 40px;
    font-size: 30px;
    font-weight: bold;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: black;
    left: 30px;
    top: 30px;
    position: absolute;
}

.hor-line {
    width: 100%;
    border-top: solid;
    border-width: 2px;
    color: #daa412;
}
