body {
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'Pretendard';
    font-weight: 400;
    overflow: hidden !important;
    margin: 0;
}

#content_wrap {
    width: 1920px;
    height: 1080px;
    padding-bottom: 120px;
    user-select: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#poppage {
    position: absolute;
    width: 100%;
    height: 100%;
    border: none;
}

#backBg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 9999;
    display: block;
}

#msg {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #009d5c;
    border: 9px solid #0aae6a;
    border-radius: 35px;
    width: 80%;
    max-width: 400px;
    padding: 20px;
    text-align: center;
    z-index: 10000;
}

#msg p {
    color: #fff;
    font-family: 'NanumSquareNeocBd';
    font-weight: normal;
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    line-height: 1.6;
    text-align: center;
    margin: 70px auto;
    display: block;
}