/* :root = html (with higher specificity) */:root { box-sizing:border-box; }/* "*" doesn't include pseudo-elements */*,::before,::after {/* box-sizing isnโt normally an inherited property, *//* use `inherit` to force it. */box-sizing:inherit;}
/* โญ๏ธ import Font Awesome */@importurl("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.15.3/css/all.min.css");/* -- custom styling for all icons -- */.fas,.fab {border:1px solid black;font-size:48px;background-color:white;color:black;}/* -- custom styling for specific icons -- */.fa-facebook {color:rgb(59, 91, 152);}