@import url(default.css);
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@font-face {
    font-family: 'Aggravo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroL.woff') format('woff');
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: 'Aggravo';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/SBAggroB.woff') format('woff');
    font-weight: 700;
    font-display: swap;
}

body {
    /* 한글이 지원되지 않는 영문 폰트를 맨 앞에 선언
        뒤에 한글이 지원되는 폰트를 사용
        => 순서: 영문전용(숫자, 특수문자 포함), 한글 포함(숫자, 특수문자 사용 안 됨), sans-serif
    */
    font-family: "Lobster Two", "Aggravo", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.5;
    color: #3d3d3d;
}

h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 3em 0 1em 0;
    font-style: italic;
}