/* Reset CSS - 기본 브라우저 스타일 제거 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  font-size: 100%;
  font-weight: normal;
  line-height: 1;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
figure, figcaption {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button, input, select, textarea {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

img, video, canvas, iframe {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

address, cite, code, em, strong {
  font-style: normal;
  font-weight: normal;
}
