#principal {
    width: 1140px;
    margin: auto;
}

.fila,
.dado,
.columna, .emoji, .ojos {
    display: flex;
}

.columna {
    flex-direction: column;
}

.dado {
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    text-align: center;
    height: 125px;
    width: 125px;
    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 2px rgb(7, 50, 20);

}

.fila {
    display: flex;
    justify-content: space-around;
    height: 600px;
    align-items: center;
    box-shadow: 15px 15px 25px 10px color rgb(81, 81, 94);
    background-image: url(img/backgroundgreen.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border: 25px solid black;
    margin: 20px 0px;
}

.punto {
    width: 30px;
    height: 30px;
    background-color: #090101fc;
    border-radius: 50%;
    margin: 5px;
    box-shadow: 0px 6px 0px 1px rgb(184, 180, 180);
}

.dado:nth-child(1) {
    justify-content: center;
    align-items: center;
}

.dado:nth-child(2) {
    justify-content: space-around;
}

.dado:nth-child(2) .punto:nth-child(2),
.dado:nth-child(3) .punto:nth-child(3) {
    justify-content: space-around;
    align-self: flex-end;
}


.dado:nth-child(3) .punto:nth-child(3) {
    justify-content: space-around;
    align-self: flex-end;
}

.dado:nth-child(3) .punto:nth-child(2),
.dado:nth-child(5) .punto:nth-child(2) {
    align-self: center;

}

.dado:nth-child(4) {
    justify-content: space-between;
}

.dado:nth-child(6) .punto:nth-child(6) {
    align-self: flex-end;
}

.dado:nth-child(6) .punto:nth-child(5) {
    justify-content: space-around;
    align-self: flex-end;
}

.dado:nth-child(6) .punto:nth-child(4) {
    justify-content: space-around;
    align-self: flex-end;
}

.dado:nth-child(4),
.dado:nth-child(5),
.dado:nth-child(6),
.columna {
    justify-content: space-between;
}

 .emoji {
    background-color: yellow;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.ojos{
    width: 150px;
    justify-content: space-between;
}

.ojo, .izquierda, .derecha {
    width: 25px;
    height: 25px;
    background-color: brown;
    border-radius: 50%;

}
.boca{
    width: 150px;
    height: 75px;
    border-radius: 0 0 75px 75px;
}
.feliz{
    background-color: brown;
}
.contenta{
    border:10px solid brown;
    border-top: none;
    border-radius: 0 0 95px 95px;
}
.mini{
    width: 75px;
    height: 37px;
}
.izquierda, .derecha, .punta{
    background-color: red;
}
.punta{
    width: 25px;
    height: 25px;
    position: relative;
}
.izquierda, .derecha{
    position: absolute;
}

.izquierda{
    left: -12px;
}
.derecha{
    top: -12px;
}
.corazon:nth-child(2) .izquierda{
    right: -12px;
    left: initial;
}