@charset "UTF-8";

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    unicode-range:U+0041-005A, U+0061-007A, U+0030-0039;
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Roboto-Medium.ttf') format('truetype');
    unicode-range:U+0041-005A, U+0061-007A, U+0030-0039;
}
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    unicode-range:U+0041-005A, U+0061-007A, U+0030-0039;
}
@font-face {
    font-family: 'Noto sans KR';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/NotoSansKR-Light.otf') format('opentype');
}
@font-face {
    font-family: 'Noto sans KR';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansKR-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'Noto sans KR';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/NotoSansKR-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'Noto sans KR';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/NotoSansKR-Bold.otf') format('opentype');
}
body {margin : 0; font-family: 'Roboto', 'Noto sans KR';}
a {text-decoration: none; display: block; color: black;}
ul {margin:0;padding: 0; list-style:none;}
h1, h2, h3, h4, h5, h6 {margin : 0;}
p {margin:0;}

/* header */
header {
    background-color: rgba(0,0,0,1);
    height : 50px;
    width : 100%;
    z-index: 11;
    position:fixed;
    display: none;
}
#gnb {
    color: white;
    display: flex;
    align-items: center;
    font-size : 24px;
    height : 45px;
}
#gnb > li:first-child {
    margin-right: 20px;
    text-decoration: underline;
}
#gnb > li {
    margin-left: 30px;
    cursor: pointer;
}
#gnb > li > a{
    color: white;
    display: flex;
    align-items: center;
    font-size : 24px;
    height : 50px;
}
#gnb > li:first-child {
    font-weight: bold;
}