.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.title {
    font-size: 40px;
    font-weight: bold;
}

.playerScores {
    display: flex;
    flex-direction: row;
    /* justify-content: center; */
    gap: 100px;
}

.playerStats {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 20px;
    /* font-weight: bold; */
}

.playerStats > h2, .playerStats > h3 {
    margin: 8px;
}

.board {
    display: grid;
    grid-template: repeat(3, 1fr) / repeat(3, 1fr);
    width: 350px;
    height: 350px;
    margin: 15px;
}

.cell {
    border: none;
    margin: 2px;
    border-radius: 6px;
    font-size: 50px;
    font-weight: bold;
}

.gameResult {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 50px;
    border-radius: 12px;
    border: none;
}

.resetButton, .nextGameButton {
    padding: 10px;
    margin: 8px;
    border: none;
    color: black;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
}

