/*
    take from: https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_social_media_buttons
*/

.footer-social {
    text-align: center;
    margin: 20px auto;
}

.fa {
    padding: 15px;
    font-size: 22px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 5px 2px;
    border-radius: 50%;
}
  
.fa:hover {
    opacity: 0.7;
    color: white;
    text-decoration: none;
}
  
.fa-facebook {
    background: #3B5998;
    color: white;
}
  
.fa-instagram {
    background: #125688;
    color: white;
}