
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 50px;
    background: linear-gradient(to right, #b83413, #feb47b);
    color: #333;
}


#game {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 15px; /* Increase the gap between cells */
    justify-content: center;
    margin: 0 auto;
}
.cell {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    border: 2px solid white;
    cursor: pointer;
    border-radius: 15px;
    transition: background-color 0.3s;
    background-color: rgba(255, 255, 255, 0.2); /* Semi-transparent white background */
    color: white;
}

/* hover effect for the cells */
.cell:hover {
    background-color: rgba(255, 255, 255, 0.5);
}
button {
    margin-top: 20px;
    padding: 10px 10px;
    font-size: 1.2em;
    color: white;
    background-color: rgb(255, 119, 0); /* Button color */
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
button:hover {
    background-color: rgb(0, 0, 0);
}
