/*****************************************************
 * Webfont 정의
 */
@font-face {
    font-family: NanumSquareL;
    src: url("/_webfonts/NanumSquareL.otf") format("opentype");
}
@font-face {
    font-family: NanumSquareR;
    src: url("/_webfonts/NanumSquareR.otf") format("opentype");
}
@font-face {
    font-family: NanumSquareB;
    src: url("/_webfonts/NanumSquareB.otf") format("opentype");
}
@font-face {
    font-family: NanumSquareEB;
    src: url("/_webfonts/NanumSquareEB.otf") format("opentype");
}

/*****************************************************
 * 초기화
 */
* {
    box-sizing: border-box;
}
html {
    font-size: 16px;
}
body {
    margin: 0;
    font-family: NanumSquareR;
    letter-spacing: -0.5px;
}

/*****************************************************
 * 페이지 up & down 버튼
 */
#up-btn {
    cursor: pointer;
}
#down-btn {
    cursor: pointer;
}

/*****************************************************
 * keyframe 정의
 */
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes bounce {
    0% {
        margin-bottom: 0;
    }
    50% {
        margin-bottom: 10px;
    }
    100% {
        margin-bottom: 0;
    }
}