/* Style all font awesome icons */
.socials{
  display: flex;
  align-items: center;
  justify-content: center;
}
  .fa, .fa-brands{
  padding: 20px;
  font-size: 25px;
  width: 37px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
    color: beige;
  }
  
  /* Set a specific color for each brand */
  
  /* Facebook */
  .fa-facebook {
    background: orange;
    color: white;
  }
  
  /* Twitter */
  .fa-x-twitter {
    background: orange;
    color: white;
  }
  /* Instagram */
  .fa-instagram {
    background: orange;
    color: white;
    }
  /* Discord */
  .fa-discord {
    background: orange;
    color: white;
    }    
    
