body{
    padding-top: 50px;
}
*{
    background-color: rgb(255, 164, 250);
}
.cell{
    width: 75px;
    height: 75px;
    border: 2px solid;
    color: white;
    box-shadow: 0 0 0 2px;
    line-height: 75px;
    font-size: 50px;
    cursor: pointer;
}
.cell:hover{
    background-color: rgb(255, 190, 251);
}
#gameContainer{
    font-family: "Permanent Marker", cursive;
    text-align: center;
}
#cellContainer{
    display: grid;
    grid-template-columns: repeat(3, auto);
    width: 225px;
    margin: auto;
}
#restartBtn{
    cursor: pointer;
    border-radius: 15px;
    border-color: white;
    padding:8px 16px;
}
#restartBtn:hover{
    background-color: rgb(255, 200, 250);
}