@charset "utf-8";

/* 
  Common CSS - 해당 홈페이지의 디자인에 관련된 것들을 모아두었습니다.
*/

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: 'Noto Sans KR', Dotum, sans-serif;
    color: #222;
    line-height: 1.6;
    -webkit-text-size-adjust: none;
}

table,
pre,
input,
select,
textarea,
button {
    font-size: 1.6rem;
    font-family: 'Noto Sans KR', Dotum, sans-serif;
}

::-moz-selection {
    background: #1f3652;
    color: #fff;
}

::-webkit-selection {
    background: #1f3652;
    color: #fff;
}

::selection {
    background: #1f3652;
    color: #fff;
}

/* Fonts */
@font-face {
    font-family: 'S-CoreDream-3Light';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-3Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-7ExtraBold';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-7ExtraBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'S-CoreDream-9Black';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_six@1.2/S-CoreDream-9Black.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* ----------------------- Media Query ----------------------- */

@media only screen and (max-width: 1100px){
    html{
        font-size: 55%;
    }
}