body{
    background-color: #333;
}

h1{
    text-align: center;
    font-size: 30px;
    color:#fff;
}
h2{
    text-align: center;
    font-size: 30px;
    color:#fff;
}
.cell{
    width: 200px;
    height: 200px;
    border:3px solid white;
    box-shadow: 0 0 2px;
    line-height: 200px;
    font-size: 100px;
    cursor: pointer;

}

#game1Container{
    font-family: "Permanent Marker", cursive;
    text-align: center;
}

#cellContainer{
    display: grid;
    grid-template-columns: repeat(3,auto);
    width:225px;
    margin-left: 650px;
    color:#fff;
}

#restartBtn{
    font-family: "Permanent Marker", cursive;
    font-size: 50px;
    border-radius: 15px;
    background-color: rgb(185, 184, 184);
    color: #333;
    height: 150px;
    width:400px;
}