body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

h1 {
    color: #333;
}

.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    gap: 5px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

.cell {
    width: 100px;
    height: 100px;
    font-size: 24px;
    text-align: center;
    cursor: pointer;
    border: none;
    background-color: #f0f0f0;
    color: #333;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cell:hover {
    background-color: #ddd;
}

#status {
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}
