/* =====================================================
   RESET.CSS
   -----------------------------------------------------
   PURPOSE:
   - Neutralizes browser defaults
   - Provides consistent baseline across all pages
   - MUST be loaded first in all projects

   RULES:
   - No layout rules
   - No colors
   - No components
===================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.5;
}