#tictactoe-container { display: flex; flex-direction: column; align-items: center; font-family: Arial, sans-serif; margin-top: 40px; } .board { display: grid; grid-template-columns: repeat(3, 100px); grid-template-rows: repeat(3, 100px); gap: 5px; } .cell { width: 100px; height: 100px; background-color: white; display: flex; justify-content: center; align-items: center; font-size: 2em; cursor: pointer; border: 2px solid #333; } .cell.taken { cursor: not-allowed; } #message { margin-top: 20px; font-size: 1.2em; } #reset { margin-top: 10px; padding: 10px 20px; font-size: 1em; }