@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap');
/* =========================
   RESET CSS (practical ver.)
   ========================= */

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

/* margin, padding 제거 */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, menu, nav, section {
  margin: 0;
  padding: 0;
  border: 0;
}

/* 기본 폰트 */
body * {font-family:'Noto Sans KR', 'verdana', 'gulim', 'dotum'; letter-spacing: -0.04em; font-size: 17px; color:#333;}

/* 리스트 */
ol, ul {
  list-style: none;
}

/* 링크 */
a {
  text-decoration: none;
  color: inherit;
}

/* 이미지 */
img, picture, video, canvas, svg {
  
  max-width: 100%;
}

/* 버튼/인풋 */
button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

/* 테이블 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* textarea */
textarea {
  resize: none;
}

/* button 커서 */
button {
  cursor: pointer;
}

/* hidden */
[hidden] {
  display: none !important;
}
