body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #f0f0f0;
    margin: 0;
}

#whoseTurn, #winner, #reset {
    margin: 20px;
}

#whichPlayerTurn, #winner1 {
    width: 150px;
    height: 40px;
    text-align: center;
    font-size: 1.2em;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
}

#gridButtons {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-template-rows: repeat(3, 100px);
    gap: 5px;
}

.grid {
    width: 100px;
    height: 100px;
    font-size: 2em;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.grid:hover {
    background-color: #e0e0e0;
}

#resetbutton {
    width: 150px;
    height: 40px;
    font-size: 1.2em;
    border: 2px solid #000;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#resetbutton:hover {
    background-color: #e0e0e0;
}