body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background-color: #f0f0f0; margin: 0; } .container { text-align: center; } .board { display: grid; grid-template-columns: repeat(3, 100px); grid-gap: 5px; margin: 20px 0; } .cell { width: 100px; height: 100px; background-color: white; display: flex; justify-content: center; align-items: center; font-size: 36px; cursor: pointer; border: 2px solid #333; } .cell:hover { background-color: #e0e0e0; } .status { margin-top: 20px; font-size: 18px; } button { padding: 10px 20px; font-size: 16px; cursor: pointer; }