/* =====================================================
  DESIGN-DRIVEN RESET
  HTML = semantics only
===================================================== */
/* --- box model --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
}

/* --- typography reset --- */
html {
  font-size: 100%;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  line-height: 1;
  font-family: inherit;
}

/* headings = semantics only */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/* text elements */
p,
blockquote,
pre,
address,
dl,
dt,
dd {
  font-size: inherit;
  font-weight: inherit;
}

/* lists */
ul,
ol {
  list-style: none;
}

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

/* media */
img,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
  height: auto;
}

/* forms */
button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  appearance: none;
}

button {
  cursor: pointer;
}
/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  font-weight: inherit;
  text-align: inherit;
}

/* emphasis */
strong,
em {
  font-weight: inherit;
  font-style: inherit;
}