*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.contenedorp{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 500px);
    gap: 35px;
    background-color:rgb(15, 11, 66);
    column-gap: 10px;
    row-gap: 10px;
    padding: 50px 50px 50px 50px;
}
.hijos{
    border-radius: 10px;
    background-color: rgb(40, 169, 255);
    width: 260px;
    height: 450px;
    padding: 10px;
    -webkit-box-shadow: 2px 2px 9px 2px rgb(0, 0, 0, 0.53);
    box-shadow: 2px 2px 9px 2px rgb(0, 0, 0, 0.53);

} 
.portadas{
    height: 68%;
    width: 100%;
    
}
.portadas img{
    height: 100%;
    width: 100%;
    border-radius: 7px;
    -webkit-box-shadow: 2px 2px 9px 2px rgb(0, 0, 0, 0.53);
    box-shadow: 2px 2px 9px 2px rgb(0, 0, 0, 0.53);
}
.contenido{
    height: 32%;
    width: 100%;
    background-color: rgb(130, 196, 216);
    font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}
.titulo{
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
}
.descripcion{
    line-height: 15px;
}
.hijos:hover{
    transform: scale(1.070);
    transition: all 0.1s ease-in;
}

@media screen and (max-width : 1250px){
    .contenedorp{
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(3, 500px);
        gap: 35px;
        background-color:rgb(15, 11, 66);
        column-gap: 10px;
        row-gap: 10px;
    
    }
    .hijos{
    
        background-color: rgb(40, 169, 255);
        width: 100%;
        height: 450px;
      
    }
}