/*common.css*/
@import url('all.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

@font-face{
    font-family: "Noto Sans KR";
    font-weight: 100;
    src: url('../fonts/NotoSansKR-Thin.otf');
}
@font-face{
    font-family:"Noto Sans KR";
    font-weight: 300;
    src: url('../fonts/NotoSansKR-Light.otf');
}
@font-face{
    font-family:"Noto Sans KR";
    font-weight: 400;
    src: url('../fonts/NotoSansKR-Regular.otf');
}
@font-face{
    font-family:"Noto Sans KR";
    font-weight: 500;
    src: url('../fonts/NotoSansKR-Medium.otf');
}
@font-face{
    font-family:"Noto Sans KR";
    font-weight: 700;
    src: url('../fonts/NotoSansKR-Bold.otf');
}
@font-face{
    font-family:"Noto Sans KR";
    font-weight: 900;
    src: url('../fonts/NotoSansKR-Black.otf');
}

html, body{
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
}

body{
    position: relative;
    overflow-x: hidden;
    font-family: "Noto Sans KR";
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    color: #ffffff;
    letter-spacing: -2px;
}

h1{
    font-size: 72px;
}
h2{
    font-size: 48px;
}
h3{
    font-size: 36px;
}
h4{
    font-size: 30px;
}
h5{
    font-size: 24px;
}

div.content section{
    width: 90%; height: 100%; max-width: 1440px; margin: 0 auto;
}