/*
============================================================
Manual Rehab NYC
reset.css

Purpose:
Creates a consistent baseline across browsers.

============================================================
*/

/* ==========================================================================
   Box Sizing
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ==========================================================================
   Remove Default Margins
   ========================================================================== */

html,
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}


/* ==========================================================================
   Body Defaults
   ========================================================================== */

body {

    min-height: 100vh;

    text-rendering: optimizeSpeed;

    line-height: 1.5;

}


/* ==========================================================================
   Images
   ========================================================================== */

img,
picture {

    max-width: 100%;

    display: block;

}


/* ==========================================================================
   Form Elements
   ========================================================================== */

input,
button,
textarea,
select {

    font: inherit;

}


/* ==========================================================================
   Links
   ========================================================================== */

a {

    text-decoration: none;

}


/* ==========================================================================
   Lists
   ========================================================================== */

ul,
ol {

    padding: 0;

    list-style: none;

}
