*{
    margin: 0;
    padding: 0;
}
.contenedorNumeros{
    width: 80%;
    height: 520px;
    background: #F7F1A7;
    margin: auto;
    margin-top: 2%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.contInt{
    width: 95%;
    height: 95%;
/*    border: 1px solid orange;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.division1{
    width: 30%;
    height: 100%;
/*    border: 1px solid green;*/
}
.tituloNA{
    width: 100%;
    height: 25%;
    background: #EB6292;
    display: flex;
    flex-direction: column;
}
.contImagenes{
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #B4DFF1;
    justify-content: center;
}
.contImagenes img{
    width: 100%;
}
.division2{
    width: 65%;
    height: 100%;
/*    border: 1px solid green;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}
.letras{
    width: 90%;
    height: 30%;
/*    border: 1px solid green;*/
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.letras p{
    font-family: 'Fredoka One', cursive;
    font-size: 100px;
    color: #302683;
    cursor: pointer;
}
.letras p:hover{
    opacity: 0.5;
}
.lugar{
    width: 100%;
    height: 30%;
/*    border: 1px solid orange;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.lugar p{
    font-family: 'Fredoka One', cursive;
    font-family: 'Didact Gothic', sans-serif;
    font-size: 80px;
    margin-left: 2%;
    margin-right: 2%;
    color: #f00;
    cursor: pointer;
}
.cuadros{
    width: 100px;
    height: 100px;
    border: 2px solid #28cc28;
    border-radius: 20px;
    background: #ffffff;
    margin-left: 2%;
    margin-right: 2%;
}
/*//////////////////////////////////// MEDIA QUERY ///////////////////////////////////////////*/
/*////////////////////////////////////////////////////////////////////////////////////////////*/
@media screen and (min-width: 960px) and (max-width: 1024px){
    .contenedorNumeros{
        width: 90%;
    }
}
@media screen and (min-width: 850px) and (max-width: 959px){
    .contenedorNumeros{
        width: 98%;
    }
}
@media screen and (min-width: 700px) and (max-width: 849px){
    .contenedorNumeros{
        width: 90%;
        height: 800px;
    }
    .contInt{
        flex-direction: column;
        align-items: center;
    }
    .division1{
        width: 40%;
        height: 50%;
        border: 1px solid green;
    }
    .tituloNA{
        width: 100%;
        height: 30%;
        background: #EB6292;
    }
    .tituloNA img{
        height: 100%;
    }
    .contImagenes{
        height: 70%;
    }
    .division2{
        margin-top: 5%;
        width: 100%;
        height: 65%;
    }
}
@media screen and (min-width: 590px) and (max-width: 699px){
    .contenedorNumeros{
        width: 97%;
        height: 800px;
    }
    .contInt{
        flex-direction: column;
        align-items: center;
    }
    .division1{
        width: 40%;
        height: 50%;
    }
    .tituloNA{
        width: 100%;
        height: 30%;
        background: #EB6292;
    }
    .tituloNA img{
        height: 100%;
    }
    .contImagenes{
        height: 70%;
    }
    .division2{
        margin-top: 5%;
        width: 100%;
        height: 65%;
    }
}
@media screen and (min-width: 500px) and (max-width: 699px){
    .contenedorNumeros{
        width: 95%;
        height: 800px;
    }
    .contInt{
        flex-direction: column;
        align-items: center;
    }
    .division1{
        width: 40%;
        height: 50%;
    }
    .tituloNA{
        width: 100%;
        height: 30%;
        background: #EB6292;
    }
    .tituloNA img{
        height: 100%;
    }
    .contImagenes{
        height: 70%;
    }
    .division2{
        margin-top: 5%;
        width: 100%;
        height: 65%;
    }
}
