#socialsContainer {
    text-align: center;
    display: flex;
    --flex-alignment: center;
    --alignment: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin: auto;
}

#socialsContainer > div {
    width: 50%;
    height: 5rem;
    position: relative;
}


@media screen and (min-width: 45rem) {
    #socialsContainer > div {
        width: 20%;
        height: 5rem;
        position: relative;
    }
}

#socialsContainer img.socialLink {
    height: 80%;
    filter: grayscale(100%) drop-shadow(0px 0px 5px gray);
}

#socialsContainer img.socialLink:link, #socialsContainer img.socialLink:visited  {
    height: 80%;
    filter: grayscale(100%);
}
  
#socialsContainer img.socialLink:hover {
    height: 95%;
    filter: saturate(90%);
}
  
#socialsContainer img.socialLink:active {
    height: 100%;
    filter: blur(5px);
    filter: saturate(100%);
}