body{
    background: url("./download\ \(2\).jpg") no-repeat center center fixed;
    background-size:cover;
    font-family: Arial, Helvetica, sans-serif;
    color: lightblue;
    text-align: center;
}
hr{
    width: 500px;
    height: 2px;
    background-color: rgb(145, 202, 255);
    border: 0;
}
#game-board{
    width: 450px;
    height: 450px;
    margin: 0 auto;
    background-color: rgb(253, 167, 218);
    color: lightblue;
    border: 6px solid lightgray;
    border-radius: 10px;
    display: grid;
    grid-template: repeat(3,1fr)/ repeat(3,1fr);

}
.game-cell{
    border: 6px solid rgb(221, 244, 221);
    border-radius: 2px;
    font-size: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.winning-game-cell{
    background-color: rgb(178, 230, 213);
    color: rgb(252, 252, 208);
}

#game-restart-button{
    height: 50px;
    width: 150px;
    border: 5px solid rgb(255, 159, 253);
    background-color: rgb(221, 255, 228);
    color: rgb(143, 193, 229);
    font-size: 20px;
    margin-top: 20px;
}