/*!
 * Minimal Font Awesome CSS for Portfolio Marvel
 * Only includes the 4 icons actually used in the project
 */

/* Core Font Awesome styles */
.fa,.fab,.fas{
  -moz-osx-font-smoothing:grayscale;
  -webkit-font-smoothing:antialiased;
  display:inline-block;
  font-style:normal;
  font-variant:normal;
  line-height:1;
  text-rendering:auto
}

/* Font Families */
.fab{font-family:"Font Awesome 6 Brands"}
.fas{font-family:"Font Awesome 6 Free";font-weight:900}

/* Font Face Declarations - Load only required icons */
@font-face{
  font-family:"Font Awesome 6 Brands";
  font-style:normal;
  font-weight:400;
  font-display:swap;
  src:url(webfonts/fa-brands-400.woff2) format("woff2")
}

@font-face{
  font-family:"Font Awesome 6 Free";
  font-style:normal;
  font-weight:900;
  font-display:swap;
  src:url(webfonts/fa-solid-900.woff2) format("woff2")
}

/* Icon definitions - Only the 4 icons we actually use */
.fa-github:before{content:"\f09b"}
.fa-linkedin:before{content:"\f08c"}
.fa-twitter:before{content:"\f099"}
.fa-envelope:before{content:"\f0e0"}
