.interiorMemorama {
    display: -webkit-box;
    display: -ms-flexbox;
        display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
        justify-content: center;
    flex-wrap: wrap;
}
.interiorMemorama>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border: 4px solid #8E8E8E;
    border-radius: 10px;
    margin: 10px;
    cursor: pointer;
}
.hoverable .interiorMemorama>div:not(.abierta):hover {
    background-color: #990000; /* color-2 */
}
.interiorMemorama span {
    display: none;
    color: #8E8E8E;
}
.interiorMemorama img {
    width: 100px;
    height: 100px;
}

.letraLengua {
    font-size: 92px;
}
.nombreLetraLengua {
    font-size: 40px;
}

.matched {
    background: #66cc66 !important;
    border-color: green !important;
    cursor: default !important;
}
.matched span {
    color: white !important;
}


@media screen and (max-width: 365px) {
    .interiorMemorama>div {
        width: 120px;
        height: 120px;
    }

    .interiorMemorama span {
        font-size: 80%;
    }
}