@import "scrollbar.css"; /* Assuming this is custom and desired */
@import "parallax.css";  /* Assuming this is custom and desired */

/* General body font (already in base.html <style>, can be here too for organization) */
body {
  font-family: 'Source Sans Pro', sans-serif;
  font-weight: 300;
}

/* Animation (if still used and desired) */
.fade-in {
  animation: fadeIn linear 0.7s;
  animation-fill-mode: forwards;  
}
@keyframes fadeIn {
  from  {opacity: 0;}
  to    {opacity: 1;}
}

/* Ensure Material Icons (if used) or Font Awesome icons align well */
.material-icons, .fas, .fab { /* General icon alignment */
  vertical-align: middle; /* Or text-bottom, baseline, etc. */
}

