.seccion-videos-redes {
    width: 95%;
    margin: 1em auto;
    display: flex;
    flex-wrap: wrap;
 
    & .videocontenedor {
        width: 400px;
        overflow: hidden;
        height: 600px;
        margin: 1em auto;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.151);
        align-items: center;
        display: flex;
        flex-direction: column;
        background-color: #f0f0f0;
        gap: 0 1em;
        border-radius: 1em;
    }

    & video {
        width: 100%;
        height: 80%;
        object-fit: cover;
        margin-bottom:1.5em ;
    }

    & a{
        text-align:center ;
        padding: 1em 2em;
        background-color: #ffffff70;
        border-radius: .7em;
        color: #000000;
        font-size: 1.2em;
        margin-left: .5em;
        transition: transform 0.3s ease, color 0.3s ease;
    }
    & a:hover{
        transform: scale(1.2);
    }
    & i{
        font-size: 1.3em;
    }
}