
.social-footer {
    padding: 1rem;
    text-align: center;
  }

  .social-footer .social-footer-icons span {
    padding: 1rem;
  }
  
  .social-footer .social-footer-icons .fa-brands {
    font-size: 1.3rem;
    color: #4a4a4a;
  }
  
  .social-footer .social-footer-icons .fa-brands:hover {
    color: #bfbfbf;
    transition: color 0.3s ease-in;
  }

  @media (prefers-color-scheme: light) {
    .social-footer .social-footer-icons .fa-brands {
        color: #bfbfbf;
    }

    .social-footer .social-footer-icons .fa-brands:hover {
        color: #4a4a4a;
    } 
  }
  @media (prefers-color-scheme: dark) {
    .social-footer .social-footer-icons .fa-brands {
        color: #4a4a4a;
    }

    .social-footer .social-footer-icons .fa-brands:hover {
        color: #fefefe
    } 
  }
  
  