body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: Arial, sans-serif;
    background-image: url('tictactoe.jpg');
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 20px;
    height: 100vh;
    justify-content: center;
}

h1 {
    margin-bottom: 20px;
}

#game {
    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;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    border: 2px solid #333;
}

.cell:hover {
    background-color: #ddd;
}

#message {
    margin: 20px;
    color: green;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}