/* CSS Reset */
*, *::before, *::after {
  box-sizing: border-box;
}

body, div, section, article, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: start;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

li {
  list-style-type: none;
}

img {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}
a:active, a:hover {
  opacity: 0.6;
  transition: all 0.6s;
}

:focus {
  outline: none;
}

a:hover, a:active {
  text-decoration: none;
}

a:visited {
  color: inherit;
}

a:-webkit-any-link {
  color: inherit;
  cursor: pointer;
}

* {
  min-height: 0;
  min-width: 0;
}

body p {
  display: block;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
}