* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;  
}



/*Iconos de las redes sociales*/

.container-redess{
    position: fixed;
    top: 25%;
    left: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-redess a{
    margin-top: 4px;
}

.container-redess img{
    width: 60px;
    padding: 4px;
    background: rgba(0,0,0,0.0);
    cursor: pointer;
    border-radius: 100%;
    transition: all 300ms;
}

.container-redess a:hover img{
    background: rgba(0,0,0,0.10);
}

