
h1{
    text-align: center;
    text-decoration: dotted;
    color: white;
    margin-top: 90px;
}
.game-board {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.row1 {
    display: flex;
    flex-direction: column;
}

.row2 {
    display: flex;
    flex-direction: column;
}

.row3 {
    display: flex;
    flex-direction: column;
}

.cell {
    width: 100px;
    height: 100px;
    border: 5px solid rgb(111, 115, 117);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    cursor: pointer;
    background-color: #331818;
}

.cell:hover {
    background-color: #ccc;
}

body {
    background-image: url('https://cdna.artstation.com/p/assets/images/images/059/649/680/large/sebastian-carmack-renderddice.jpg?1676862223');
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center center;
}