body {
    font-family: sans-serif;
}

#gameBoard {
    background-color: #232323;
    display: grid;
    grid-template-columns: 6rem 6rem 6rem;
    grid-template-rows: 6rem 6rem 6rem;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 19rem;
}

#gameBoard span {
    background-color: #ddd;
    display: grid;
    place-content: center;  /*Centralizar o elemento dentro do span*/
    font-size: 5rem;
}

#gameBoard span.win {
    background-color: #25a240;
}

.cursorPointer {
    cursor: pointer;
}

