/* style.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #5b5b5b;
    margin: 0;
    padding: 0;
}
h1 {
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    margin: 0;
}
.board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    justify-content: center;
    margin-top: 20px;
}
.cell {
    width: 100px;
    height: 100px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border: 1px solid #ccc;
}
.cell input {
    width: 60px;
    text-align: center;
}
.cell.occupied {
    pointer-events: none;
    background-color: #ddd;
}
#message {
    margin-top: 20px;
    font-size: 18px;
}
.controls {
    margin-top: 20px;
}
.controls input, .controls button {
    padding: 10px;
    font-size: 16px;
    margin: 5px;
}
#game-logo {
    width: 200px;
    height: auto;
}
.message-style {
    font-size: 30px;
    color: rgb(0, 0, 8);
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif, sans-serif;
    text-align: left;
}

