body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.game-container {
    text-align: center;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 5px;
    width: 320px;
    margin: 0 auto;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    border: 2px solid #333; /* 枠の追加 */
    box-sizing: border-box; /* 枠の幅をセルの内側に収める */
}

/* マルのスタイル */
.cell.X {
    color: blue; /* バツを青色に変更 */
}

/* バツのスタイル */
.cell.O {
    color: red; /* マルを赤色に変更 */
}

.cell:hover {
    background-color: #ddd;
}
