/* CSS styles for the game board squares */
.square {
    width: 100px;
    height: 100px;
    background-color: black;
    border: 1px solid white;
    text-align: center;
    line-height: 100px;
    font-size: 24px;
    color: white;
    cursor: pointer;
}
