#game {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 600px;
    margin: auto;
    border: 1px solid #000;
}
#question {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 48px; /* フォントサイズをさらに大きくしました */
}
#gameCanvas {
    width: 100%;
    height: calc(100% - 150px); /* コンテナ内に収まるように高さを調整 */
    cursor: none; /* カーソルを非表示にする */
}
#score, #questionCount, label, select, button, h2, ul {
    font-size: 24px; /* 他の要素のフォントサイズも大きくしました */
}