/*base*/
@tailwind base;
@tailwind components;
@tailwind utilities;

* {
    box-sizing: border-box;
    word-break: keep-all;
    /* font-family: "Pretendard", "sans-serif";*/
    font-family: "Pretendard";
    letter-spacing: -0.01rem;
}



html,
body {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
#wrap::-webkit-scrollbar,
section::-webkit-scrollbar {
    display: none;
}

#wrap {
    position: relative;
    min-width: 270px;
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    text-size-adjust: auto;
    -webkit-text-size-adjust: auto;
    color: #000;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    /*background: url("/imaegs/bg.jpg") no-repeat;*/
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #000;
}

/*text*/
.text-box {
    position: relative;
    z-index: 4;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text-box>dt,
.text-box>dd {
    width: 100%;
}

/*btnbox*/
.btn-box {
    width: 100%;
}

.btn-box>li {
    width: 100%;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(3px);
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 5px;
}

.btn-box>li>span {
    font-weight: 600;
    letter-spacing: -0.03rem;
}

.btn-box>li>img {
    position: relative;
    object-fit: contain;
}

.btn-box>li:first-child>img {
    top: 1px;
}

.dark-bg {
    position: fixed;
    min-width: 270px;
    max-width: 640px;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}


.dark-move {
    position: fixed;
    min-width: 270px;
    max-width: 640px;
    width: 100%;
    height: 100%;
    opacity: 0.5;
}

.dark-move>video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

footer {
    position: relative;
    z-index: 5;
}

img.imgwhite {
    filter: brightness(0) invert(1);
}

/*flex*/
.flex_center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flex_between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*----------------------se,폴드 ----------------------*/
@media (max-width: 340px) {}