/* ======== Reset CSS ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section, summary {
  display: block;
}
ol, ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
input, button, textarea, select {
  all: unset;
  box-sizing: border-box;
}
a {
  color: inherit;
  text-decoration: none;
}
img, video {
  display: block;
  max-width: 100%;
  height: auto;
}
html, body {
  height: 100%;
  line-height: 1;
  background: #fff;
  color: #000;
  font-family: sans-serif;
}
