body {
    margin: 0;
    padding: 0;
    background-color: #e4efff;
    color: #fff;
}
main {
    margin: 0 auto;
    max-width: 700px;
    font-size: 0;
    line-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    img {
        width: 100%;
        -webkit-user-drag: none;  /* 크롬, 사파리 */
        -khtml-user-drag: none;   /* 구버전 브라우저 */
        -moz-user-drag: none;     /* 파이어폭스 */
        -o-user-drag: none;       /* 오페라 */
        user-drag: none;          /* 표준 */

        -webkit-user-select: none; /* 크롬, 사파리 */
        -moz-user-select: none;    /* 파이어폭스 */
        -ms-user-select: none;     /* IE/엣지 */
        user-select: none;         /* 표준 */
    }
    #link-button {
        display: block;
        width: 100%;
        cursor: pointer;
        position: sticky;
        bottom: 0;
        left: 50%;
        background-color: #ff5221;
        margin-top: -1px;
        /*font-size: 0;*/
        /*line-height: 0;*/
        font-size: clamp(24px, 5vw, 46px);
        color: #fff;
        line-height: 300%;
        text-align: center;
        text-decoration: none;
        font-weight: 800;
    }
    #image-logo-section {
        margin-top: -1px;
    }
}

footer {
    background-color: #0a2540;
}

footer dl {
    color: #e4efff;
}