/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}


img, canvas, iframe, video {
    max-width: 100%;
}

img {
    height: auto;
}

a {
    color: #1c1e13;
    text-decoration: underline;
    text-decoration-color: #1c1e1399;
    text-decoration-style: dotted;
}

a:hover {
    text-decoration: none;
}
