*{
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: rgb(59, 39, 39);
    color: rgb(136, 161, 20);

}

.container{
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content:center;
    align-items: center;
    flex-direction: column;
}

.gamebox{
    flex-wrap: wrap;    
    height: 350px;
    width: 350px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin:0;
    padding:0;
}

.game-status{
    margin: 10px;
    color:rgb(84, 245, 9)
}

.cell{
    height: 100px;
    width: 100px;
    margin:4px;
    padding: 1px;
    border: 3px solid rgb(117, 128, 23);
    text-align: center;
    border-radius: 5px;
    background-color: rgb(99, 65, 23);
    color:rgb(17, 200, 255);
    font-size: 4rem;
}

button,h1,h2{
    margin: 20px;
    
}