body {
    color: black;
    font-family: sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background: #34a5b5;
}
.reset{
    text-align:center;
    margin-top:10px;
}
#game {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
    margin-bottom: 15px;
}.cell {
     width: 100px;
     height: 100px;
     background: white;
     border: 2px solid #333;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 2rem;
     cursor: pointer;
 }

.cell.win {
    background: #71d4e3;
    color: white;
}

#status {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

button {
    padding: 8px 15px;
    font-size: 1rem;
    cursor: pointer;
}