@charset "UTF-8";
/* ----------------------------------
   Minimal Reset / Normalize (readable)
------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

h2, h3, h4, p {
  margin: 0;
}

/* Typographic defaults */
body {
  font-size: 16px;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

/* Media elements */
img, svg, video, canvas, audio, iframe, embed, object {
  display: block;
  max-width: 100%;
}

/* Form elements inherit font */
input, button, textarea, select {
  font: inherit;
}

/* Lists */
ul, ol {
  padding: 0;
  margin: 0;
}
li { list-style: none; }

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Tables */
table { border-collapse: collapse; border-spacing: 0; }

/* Guard against accidental horizontal overflow */
html, body {
  overflow-x: hidden;
}