body {
    margin: 0;
    padding: 0;
    background-color: #111;
    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%;
        font-size: 0;
        line-height: 0;
        cursor: pointer;
        position: sticky;
        bottom: 0;
        left: 50%;
        padding: clamp(10px, 3vw, 20px) 0;
        background-color: #000;
    }
}