/* @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Nanum+Pen+Script&family=Noto+Sans+KR:wght@100..900&display=swap');

@font-face {
    font-family: '주아체';
    src: url('/fonts/BMJUA_ttf.ttf') format('truetype');

}

@font-face {
    font-family: '기랑해랑체';
    src: url('/fonts/BMKIRANGHAERANG-TTF.ttf') format('truetype');
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
}

body {
    font-family: "Noto Sans KR", sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e9e9e9;
}

nav {
    display: block;
}

nav ul {
    display: inline-block;
}

header h1 {
    margin: 10px 0;
    font-family: '주아체';
}

header, section {
    padding: 0 2%;
}

section {
    min-height: 500px;
}

footer {
    border-top: 1px solid #e9e9e9;
    padding: 2% 0;
    text-align: center;
    color: gray;
    background-color: bisque;
}