/*=============================================
===============   Developed by   ==============
===============  Danny McMurray  ==============
=============================================*/



/*=============================================
Remove unwanted space when using padding and/or
borders.
=============================================*/
*
{
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
}

/*=============================================
Smooth all fonts.
=============================================*/
html,
html a
{
    text-shadow: 1px 1px 1px rgba(0,0,0,.004);

    -webkit-font-smoothing: antialiased;
       -moz-font-smoothing: antialiased;
            font-smoothing: antialiased;
}

/*=============================================
Set width/height for the html and body to 100%.
=============================================*/
html,
body
{
    width: 100%;
    height: 100%;
}

/*=============================================
Make the browser's vertical scrollbar always
visible (so the content isn't pushed to the left
when scrolling is necessary).
=============================================*/
/* html
{
    overflow: -moz-scrollbars-vertical; Firefox
    overflow-y: scroll;
} */
