#principal {
    width: 1140px;
    margin: auto;
}

.dado {
    padding: 10px;
    border-radius: 10px;
    background-color: rgb(246, 241, 239);
    text-align: center;
    height: 125px;
    width: 125px;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0px 8px 3px -1px #e3e1e1 inset, -8px 0px 3px -1px #b2b2b1 inset, 0px -8px 3px -1px #bdb8b6 inset, 8px 0px 3px -1px #bfbfbf inset, 10px 10px 10px 10px #1e3c22;
}

.fila,
.dado,
.columna {
    display: flex;
}

.columna {
    flex-direction: column;
}

.dado:nth-child(1) {
    justify-content: center;
    align-items: center;
}

.dado:nth-child(2),
.dado:nth-child(3),
.dado:nth-child(4),
.dado:nth-child(5), .dado:nth-child(5), .dado:nth-child(6), .columna {
    justify-content: space-between;
}

.dado:nth-child(2) .punto:nth-child(2),
.dado:nth-child(3) .punto:nth-child(3),
.dado:nth-child(4) .punto:nth-child(2),
.dado:nth-child(5) .punto:nth-child(2) {
    align-self: flex-end;
}

.dado:nth-child(3) .punto:nth-child(2),
.dado:nth-child(5) .punto:nth-child(2), .dado:nth-child(6) .punto:nth-child(2) {
    align-self: center;
}

.fila {
    display: flex;
    background-color: rgb(41, 42, 42);
    justify-content: space-around;
    height: 600px;
    align-items: center;
    /* flex-direction: row-reverse; */
    box-shadow: 15px 15px 15px 5px #223e26;
    background-image:url(img/tapete.jpg) ;
}

.punto {
    width: 30px;
    height: 30px;
    background-color: rgb(201, 70, 201);
    border-radius: 50%;
}

/* 
.dado:nth-child(2),
.dado:nth-child(4) {
    align-self: flex-start;
}

.dado:nth-child(1),
.dado:nth-child(3) {
    align-self: flex-end;
} */