.container {
    width: 500px;
}

.grid {
    display: flex;
    flex-wrap: wrap;
    background-color: #dcd6bc;

    height: 400px;
    width: 400px;
    margin-left: 50px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 10px solid #dcd6bc;
}

/* =================== Cells style =================== */
div {
    font-size: 25px;
    text-align: center;
    font-family: "Roboto Mono", monospace;
}

.valid, .bomb {
    height: 40px;
    width: 40px;
    border: 5px solid;
    border-color: #f5f3eb #bab7a9 #bab7a9 #fff9db;
    box-sizing: border-box;
}

.checked {
    height: 40px;
    width: 40px;
    border: 2px solid #9c998d;
    box-sizing: border-box;
}
    .one {
        color: #e76346;
    }
    .two {
        color: #4199d3;
    }
    .three {
        color: #57da59;
    }
    .four {
        color: #bb41d3;
    }