html {
   box-sizing: border-box;
   -moz-box-sizing: border-box;
   -webkit-box-sizing: border-box;
}

*, *::before, *::after {
 box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6,
ul, ol, li, p, pre, hr {
   margin: 0;
   padding: 0;
}

ul {
   list-style: none;
}

input, textarea, button {
   color: inherit;
   font: inherit;
   letter-spacing: inherit;
   border: 1px solid gray;
}

button {
   border-radius: 0;
   padding: 0.74em 1em;
   background-color: transparent;
}

button * {
   pointer-events: none;
}

embed, iframe, img, object, video {
   display: block;
   max-width: 100%;
}

table {
   table-layout: fixed;
   width: 100%;
}

noscript {
   display: block;
   margin-bottom: 1em;
   margin-top: 1em;
}

[hidden] {
   display: none !important;
}