.social-media-container {
    width:100%;
    display:inline-block;
}
.social-media {
    width:80px;
    height:80px;
    border-radius:25%;
    margin:10px;
    display:inline-block;
    position:relative;
    transform:scale(1);
    transition: transform 0.2s;
    filter:drop-shadow(0px 5px 3px #00000088);
}

.social-media:hover {
    transform:scale(1.1);
}


img.icon {
    margin-bottom:-25px;
    
}

img.icon:hover {
    filter:brightness(120%);
}

.social-media.github {
    background-color:#000;
}

.social-media.github:hover {
    background-color:#222;
}

.social-media.youtube {
    background-color: #CD201F;
}

.social-media.youtube:hover {
    background-color:#e72d2d;
}

.social-media.linkedin {
    background-color: #0a66c2;
}

.social-media.linkedin:hover {
    background-color: #1773d0;
}


.fa {
    text-decoration: none;
    color:white;
    padding-top:18px;
    font-size:44px !important;
    width:80px;
    height:63px;
    text-align:center !important;

}