#redes {
    background-color: #ddd;
}

.contenedor-redes-general {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.contenedor-redes-general img {
    max-width: 300px;
}

.contenedor-redes-general>div {
    background-color: #fff;
    border-radius: 10px;
    padding: 1em;
    max-width: 100%;
    margin-top: 1em;
}

.contenedor-redes {
    max-height: 300px;
    width: 500px;
}

.contenedor-redes.twitter {
    overflow-y: scroll;
}

.contenedor-redes {
    max-height: 300px;
    width: 500px;
    overflow: hidden;
    max-width: 100%;
}

.contenedor-redes-general h1 {
    align-self: center;
    text-align: center;
}

.contenedor-redes-general h1 a {
    margin-top: .5em;
    display: inline-block;
}

@media(min-width:991px) {
    .contenedor-redes-general {
        flex-direction: row;
    }

    .contenedor-redes-general>div {
        margin-top: 0;
        max-width: 50%;
        margin: 0 .5em;
    }
}