.contenido {
    margin-left: 0;
    margin-top: 70px;
    position: relative;
    width: 100%;
    z-index: 2;
}
.contenido .portadas {
    box-shadow: 4px 4px 4px 4px #c0c0c0;
    box-sizing: border-box;
    margin: 2rem auto;
    max-width: 700px;
    width: 95%;
}
.contenido .portadas .titulo {
    box-sizing: border-box;
    padding: 0 1em;
    line-height: 2em;
    font-size: 1em;
    color: white;
    background: #008048;
    text-align: left;
    width: 100%;
}
.contenido .portadas .redes_sociales {
    display: flex;
    justify-content: center;
    
}
.contenido .portadas .redes_sociales .icon_social {
    margin: 0 .25em 1em .25em;
    background: #021a35;
    color: white;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    text-align: center;
    line-height: 1.1em;
    font-size: 1em;
    padding: .25rem;
    cursor: pointer;
}
.contenido .portadas .imagen {
    box-sizing: border-box;
    padding: 1em;
}
.contenido .portadas .info {
    box-sizing: border-box;
    padding: 0 1em 1em;
    font-size: .9em;
    line-height: 1.5em;
}
.contenido .portadas .info a {
    color: blue;
    text-decoration: underline;
}
@media only screen and (min-width: 768px){
    .contenido {
        margin-top: 100px;
    }
}
@media only screen and (min-width: 1200px){
    .contenido {
        height: 100vh;
        margin-left: 300px;
        margin-top: 0px;
        overflow-y: scroll;
        position: relative;
        width: calc(100% - 300px);
    }
    .contenido .portadas .titulo {
        font-size: 1.2em;
    }
}