#board {
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    text-align: center;
}

#board > canvas {
    width: 42%;
    height: 42%;
}

#retry {
    display: none;
}

.end #retry {
    display: inline-block;
}

.end #resign, .end #pass {
    display: none;
}

#ai-time, #your-time {
    display:inline-block;
    width: 100px;
    text-align: left;
}

body {
    background-image: url('https://igo-creative.net/bsk/background.png');
    background-size: cover;
    background-repeat: no-repeat;
}

/*
 * bootstrap v4のモーダルはpostion: fixed;なのでスクロールしない。とりあえずモーダルのボディをスクロールさせる
 * 80pxはアドレスバー、8pxはモーダルのパディング、69pxはモーダルのヘッダ
 */
.modal-body {
    max-height: calc(100vh - 80px - 8px * 2 - 69px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
