@charset "utf-8"; /* reset.css */

/* 기본 여백 제거 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 문서 기본 설정 */
html,
body {
  width: 100%;
  min-height: 100%;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: inherit;
  color: inherit;
}

/* 리스트 기본 스타일 제거 */
ul,
ol,
li {
  list-style: none;
}

/* 링크 기본 스타일 제거 */
a {
  color: inherit;
  text-decoration: none;
}

/* 버튼 기본 스타일 제거 */
button {
  border: 0;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

/* 입력 요소 기본 폰트 상속 */
input,
textarea,
select,
button {
  font: inherit;
}

/* 이미지 하단 공백 제거 */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* 테이블 기본 설정 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 폼 요소 기본 스타일 정리 */
input,
textarea {
  border-radius: 0;
  outline: none;
}

textarea {
  resize: vertical;
}

/* iOS 버튼/인풋 기본 스타일 제거 */
button,
input,
textarea,
select {
  -webkit-appearance: none;
  appearance: none;
}

/* 접근성용 숨김 클래스 */
.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
