*{
    user-select: none;
    -ms-user-select: none;
    
    outline: 0;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html{
    width: 100%;
    height: 100%;
}

body{
    height: 100%;
    width: 100%;

    overflow: hidden;

    margin: 0;
    padding: 0;
}

canvas{
    position: absolute;
    z-index: -1;

    height: 100%;
    width: 100%;
}

#container{
    position: absolute;
    z-index: 1;

    display: flex;
    /* display: none; */
    justify-content: center;

    width: 100%;
    height: 100%;

    background-color: #ACC7B4; 

    transition: all 0.3s;
}
#container-inner{
    display: flex;
    flex-direction: column;

    justify-content: center;
}
#background{
    position: absolute;
    z-index: 0;

    height: 100vh;
    width: 100vw;

    display: none;

    background-color: black;
    opacity: 50%;
}

#computerNoticeContain{
    display: none;  /* 실행 되면 flex로 변경됨. */
    justify-content: space-between;
    align-items: center;

    font-size: min(6vh, 15vw);
    font-family: 'Noto Sans KR', sans-serif;
    line-height: min(7vh, 17.5vw);
    color: white;
}
#qr-code{
    height: min(20vh, 50vw);

    padding-right: min(2vh, 5vw);
}

#frontContain{
    display: none;
    flex-direction: column;

    justify-content: center;
    align-content: center;
}
#rotateContain{
    display: none;
    flex-direction: column;

    justify-content: center;
    align-content: center;
}

#icoGIF{
    height: auto;
    width: min(20vh, 50vw);
}
#icoText{
    color: white;
    font-size: min(2vh, 5vw);
    font-family: 'Noto Sans KR', sans-serif;
}

#logo{
    position: absolute;
    z-index: 999;

    padding: 1%;

    color: white;
    font-size: min(2vh, 5vw);
    font-family: 'Noto Sans KR', sans-serif;
}