
/*
    ************************************ 공통 레이아웃 ************************************
*/

* {padding:0; border:0; margin:0;}
html, body {height:100%; overscroll-behavior: none;}

a {text-decoration:none; color:#000000;}
a:visited {text-decoration:none; color:#000000;}
a:active {text-decoration:none; color:#000000;}
a:link {text-decoration:none; color:#000000;}

ul, ol, dl {list-style: none;}

:focus {outline:none;}



.pageOutWrap {display:block; position:relative; width:100%; height:100%; overflow: hidden; background-size:cover; background-position:center center;}

/*스케일로 리사이징 되는 영역*/
.contentsOutWrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: top left;
    background: linear-gradient(180deg, #E1E6EF 0%, #E8ECF1 43.27%, #DFE6F0 60.1%, #ECF0F7 66.35%, #FFF 100%);
    overflow: hidden;
}

body {
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color: transparent; -webkit-tap-highlight-color: rgba(0,0,0,0); /*모바일에서 하이라이트 안되게 추가해줌.*/
}
/*이미지 드래그 막기위해서*/
img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
}

/* 활동페이지 */
.activityPage { padding: 45px 30px 40px 30px; box-sizing: border-box; }

/* 인트로 페이지 */
.introPage { position: absolute; width: 100%; height: 100%; background-image: url("../images/introBg.png"); background-repeat: no-repeat; background-position: center center; background-size: cover; z-index: 9; }
.introPage .btnStart { position: absolute; bottom: 242px; left: 50%; transform: translateX(-50%); width: 195px; height: 79px;
    background-image: url("../images/btnIntroStart.png"); background-size: 195px 79px; background-repeat: no-repeat; cursor: pointer; }
.introPage .mainTitle { position: absolute; top: 255px; left: 50%; transform: translateX(-50%); }
.introPage .mainTitle img { width: 100%; }