// 아래 폰트 패밀리는 모든 OS 에서 기본으로 가지고있는 폰트패밀리 목록입니다.
//자세한건 다음 링크를 참조하세요 
/* https://github.com/necolas/normalize.css/issues/665 */
@import url(https://fonts.googleapis.com/earlyaccess/notosanskr.css);
// @외국꺼
html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: $html-color;
  font-size: 0.9rem;
}
// @한국꺼
html {
  font-family: 'Noto Sans KR', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.004);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  word-wrap: break-word;
  line-height: 120%;
  // line-height 보정
  margin-top: -$standard-height;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -.1rem;
  margin-bottom: 2.5rem
}

h2 {
  font-size: 3rem;
  letter-spacing: -.1rem;
  margin-bottom: 2rem
}

h3 {
  font-size: 2.4rem;
  letter-spacing: -.1rem;
  margin-bottom: $standard-margin-bottom + .5rem
}

h4 {
  font-size: 2rem;
  letter-spacing: -.08rem;
  margin-bottom: $standard-margin-bottom + .4rem
}

h5 {
  font-size: 1.6rem;
  letter-spacing: -.05rem;
  margin-bottom: $standard-margin-bottom + .3rem
}

h6 {
  font-size: $typho-h6;
  letter-spacing: 0;
  margin-bottom: $standard-margin-bottom
}

// 타블렛 이상일때
@mixin response ($full,$tablet) {
  // html {
  //   font-size: 0.6rem;
  // }
}