/* styles.css */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin: 20px;
    background-color: #B1AFFF;
}

h1 {
    margin-bottom: 20px;
}
.playarea{
    display: flex;
    justify-content: center;
}
#game-board {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 5px;
    margin: 85px auto;
}
#playerx{
    height: 300px;
    margin: 50px;
    background-color: none;
    border: 6px solid #FFE9D0;
    border-radius: 9px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#playero{
    height: 300px;
    margin: 50px;
    background-color: none;
    border: 6px solid #FFFED3;
    border-radius: 9px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
#player1{
    height: 150px;
}
#player2{
    height: 150px;
}
.cell {
    width: 100px;
    height: 100px;
    background-color: #FFE9D0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    cursor: pointer;
    filter: drop-shadow(8px 8px 5px);
}

.cell:nth-child(odd) {
    background-color: #FFFED3;
    filter: drop-shadow(8px 8px 5px);
}

button {
    margin-top: 20px;
    height: 30px;
    width: 110px;
    border-radius: 5px;
    background-color: #BBE9FF;
    border: none;
    filter: drop-shadow(8px 8px 5px);
    cursor: pointer;
}
