@mixin reset() {
    /**
    * Fozzie Reset Styles
    * =================================
    * We use normalize.css for the bulk of our 'reset'
    * but anything else 'reset-y' lives in here
    *
    * This is an optional component within Fozzie.
    * If you'd like to use it in your project you can include it by adding `@include reset();` into your SCSS dependencies file.
    */

    html {
        box-sizing: border-box;
    }

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