/* Style all font awesome icons */
.fa {
    font-size: 30px;
    width: 50px;
    height: 50px;
    text-align: center;
    text-decoration: none;
    border-radius: 50%;
  }
  
  /* Add a hover effect if you want */
  .fa:hover {
    opacity: 0.7;
  }
  
  /* Set a specific color for each brand */
  
  /* Facebook */
  .fa-facebook {
    background: #3B5998;
    color: white;
    padding-top: 10px;
  }

  /* Instagram */
  .fa-instagram {
    background: #2e385b;
    color: white;
    padding-top: 10px;
  }

  /* Solid border */
hr.solid {
    border-top: 1px solid #000000;
  }