/* normalize.css - 브라우저 기본 스타일을 일관되게 맞추기 위한 파일 */
/* 자세한 설명은 https://necolas.github.io/normalize.css/ 참고 */

html {
  line-height: 1.15; /* 1. 기본 line-height 설정 */
  -webkit-text-size-adjust: 100%; /* 2. iOS에서 텍스트 크기 자동 조정 방지 */
}

body {
  margin: 0; /* 3. body 기본 margin 제거 */
}

main {
  display: block; /* 4. main 요소를 block으로 지정 */
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input { /* 1. Remove the inheritance of text transform in Edge, Firefox, and IE. */
  overflow: visible;
}

button,
select { /* 1. Remove the inheritance of text transform in Edge, Firefox, and IE. */
  text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

template {
  display: none;
}

[hidden] {
  display: none;
} 