@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://fonts.googleapis.com/css2?family=Bagel+Fat+One&family=Gowun+Dodum&display=swap');

:root {
    --std: 16px;
    --smallWidth: 320px;
    --middleWidth: 640px;
    --kColor: rgb(150, 0, 255);
    --ktColor: rgb(150, 0, 255, 0.25);
    --tColor: rgba(255, 255, 255, 0.675);
    --mColor: rgb(75, 75, 75, 0.75);
    --shadow: 0px 0px 8px rgba(50, 50, 50, 0.125);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    line-height: 1;
    text-decoration: none;
    text-transform: none;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    word-break: keep-all;
    overflow-wrap: break-word;
    word-wrap: break-word;
    list-style-type: none;
    /* font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif; */
    font-family: "Gowun Dodum", sans-serif;
}

html {
    font-size: 16px;
}

body {
    background-color: rgb(12.5, 12.5, 12.5);
}

*, html, body {
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#app-index {
    padding: 16px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 16px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

#cont-video {
    position: relative;
    width: calc(100vh - 32px);
    height: calc(100vh - 32px);
    border-radius: 100%;
    overflow: hidden;
}

@media screen and (orientation: landscape) {
    #cont-video {
        width: calc(100vh - 32px);
        height: calc(100vh - 32px);
    }   
}

@media screen and (orientation: portrait) {
    #cont-video {
        width: calc(100vw - 32px);
        height: calc(100vw - 32px);
    }   
}

#cont-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center center;
       object-position: center center;
    opacity: 0.25;
}

a#enter {
    bottom: 0;
    padding: 0.5em 0.75em;
    margin: 0;
    width: auto;
    font-size: 1.375rem;
    border: none;
    border-radius: 0.375em;
    background-color: rgb(150, 0, 255);
    color: rgb(255, 255, 255);
    cursor: pointer;
}