body {
    padding: 0px;
    margin: 0px;
    font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
    background-image: url('/images/bg_0003.webp');
    background-position: top center;
    background-repeat: no-repeat;
    /* background-size: contain; */
    background-size: 100vw;

}

a {
    color: #00B7FF;
}

#dynamicHeader_Wrapper{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    height: 50px;
    max-width: 1200px;
    margin: auto;
}
.dynamicHeader_Links{
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    color: #54595f;
    cursor: pointer;
    text-decoration: none;
}
#header_mobile{
    display:none;
}

#mobileMenu{
    /* display:none; */
    position: absolute;
    left: 0;
    top: 0;
    display:none;
    flex-direction: column;
    width: 100%;
    height: 100%;
    z-index: 100;
    background-color: #fdfdfdeb;
}
#mobileMenu_close{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    padding: 0px;
    color: #333333;
    transition: transform 0.5s;
    cursor: pointer;
    margin-left: auto;
    margin-right: 20px;
    margin-top:20px;
}

#mobileMenu_close:hover{
    transform: rotate(90deg); /* 호버 시 90도 회전 */
}

#footer_Wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url("/images/footer_background.webp");
    padding-top: 62px;
    padding-bottom: 62px;
}

#footer_name{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #939393;
    margin-top: 12px;
}
#footer_content{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #939393;
    margin-top: 12px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 5%;
}
#footer_content > a{
    word-break: keep-all;
    width: 100%;
    text-decoration: none;
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #939393;
}

#footer_copyright{
    font-family: 'Noto Sans KR', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #939393;
    margin-top: 12px;
}
/* Mobile */
@media only screen and (max-width:480px) {
    #header_title{
        width: 300px;
        height: 50px;
    }

    #header_pc{
        display: none;
    }
    #header_mobile{
        display:flex;
        font-size: 22px;
        padding-right: 10px;
        font-weight: 600;
        color: #54595f;
        cursor: pointer;
        text-decoration: none;
        word-break: keep-all;
    }
    #footer_content{
        width: 90%;
        flex-direction: column;
        gap: 20px;
    }
}