/* opinionated resets
https://jaydenseric.com/blog/forget-normalize-or-resets-lay-your-own-css-foundation
*/

html {
	box-sizing: border-box;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	margin: 0;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "pnum";
	font-variant-numeric: proportional-nums;
	text-rendering: optimizeLegibility;
}

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

h1,
    h2,
    h3,
    h4,
    /* p, */
    blockquote,
    figure,
    ol,
    ul {
	margin: 0;
	padding: 0;
}

main,
li {
	display: block;
}
/* 
  h1,
  h2,
  h3,
  h4 {
    font-size: inherit;
  } */

strong {
	font-weight: bold;
}
a,
button {
	color: inherit;
	/* transition: all 0.3s ease-out; */
	transition-property: background-color, color, opacity;
	/* transition: background-color color 0.3s ease-out; */
}

a {
	text-decoration: none;
}

button {
	overflow: visible;
	border: 0;
	font: inherit;
	-webkit-font-smoothing: inherit;
	letter-spacing: inherit;
	background: none;
	cursor: pointer;
}

::-moz-focus-inner {
	padding: 0;
	border: 0;
}

:focus {
	outline: 0;
}

img {
	max-width: 100%;
	height: auto;
	/* border: 0; */
	/* width: 100%; */
}

/*! modern-normalize | MIT License | https://github.com/sindresorhus/modern-normalize */

hr {
	height: 0;
}
b,
strong {
	font-weight: bolder;
}

/* Forms
       ========================================================================== */

/**
     * 1. Change the font styles in all browsers.
     * 2. Remove the margin in Firefox and Safari.
     */

button,
input,
optgroup,
select,
textarea {
	font-family: inherit; /* 1 */
	font-size: 100%; /* 1 */
	line-height: 1.15; /* 1 */
	margin: 0; /* 2 */
}

/**
      * Remove the inheritance of text transform in Edge and Firefox.
      * 1. Remove the inheritance of text transform in Firefox.
      */

button,
select {
	/* 1 */
	text-transform: none;
}

/**
     * Correct the inability to style clickable types in iOS and Safari.
     */

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

/**
     * Remove the inner border and padding in Firefox.
     */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
     * Restore the focus styles unset by the previous rule.
     */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
     * Correct the cursor style of increment and decrement buttons in Safari.
     */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
      * 1. Correct the odd appearance in Chrome and Safari.
      * 2. Correct the outline style in Safari.
      */

[type="search"] {
	-webkit-appearance: textfield; /* 1 */
	outline-offset: -2px; /* 2 */
}

/**
      * Remove the inner padding in Chrome and Safari on macOS.
      */

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
      * 1. Correct the inability to style clickable types in iOS and Safari.
      * 2. Change font properties to `inherit` in Safari.
      */

::-webkit-file-upload-button {
	-webkit-appearance: button; /* 1 */
	font: inherit; /* 2 */
}
