/* Your CSS styles here */
/* For example: */
.board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    width: 300px;
    margin: 20px auto;
}

.cell {
    width: 100px;
    height: 100px;
    background-color: lightblue;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
}

.cell:hover {
    background-color: skyblue;
}

.game-container {
    text-align: center;
    margin-top: 50px;
}

.message {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 20px;
}
