html, body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(8, 122, 122);
    color: white;
}
.container{

    display: flex;
    justify-content: space-around;
}
.gamecontainer{

    display: flex;
    flex-direction: column;
    align-items: center;
}
#gameboard{

    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 5px;
    margin: 20px;
}
.cell{

    width: 100px;
    height: 100px;
    background-color: aquamarine;
    display:flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    cursor: pointer;
    border-radius: 10px;
}
.cell:hover{

    background-color: rgb(43, 217, 217);
}
#restartBtn{

    padding: 20px;
    background-color: aquamarine;
    color: black;
    font-size: 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    transition: all ease 0.5s;
}
#restartBtn:hover{
    background-color: rgb(43, 217, 217);

}
#playerX, #playerO{

    width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid white;

}
#PlayerX_Score,#PlayerO_Score{

    font-size: 55px;

}