/*reset*/
*{
    margin:0; padding:0;
}
li{list-style-type:none;}
a:link, a:visited{ text-decoration: none; color:#2280ff;}

body{
    background-color:#fff;
}

#wrap{
    width: 100%;
    font-family: 'Poppins','Noto Sans KR',sans-serif;
    font-size:15px;
    color:#000;
    /* position: relative; */
}
/* 팝업창 영역 */
.popupBg{
    width:100%;
    height:100%;
    position: fixed;
    /* transform: translate(-50%,-50%); */
    background-color:rgba(0.6,0.6,0.6,0.8);
    z-index:100;
    display:none;
}

.popup{
    width:80%;
    height:400px;
    position:absolute; left:50%; top:50%;
    transform: translate(-50%,-50%);
    background-color:#fff;
    border-radius:10px;
    position:relative;
    z-index:200;
}
.icon{
    position: absolute; top:-40px; left:50%;
    transform: translatex(-50%);
    width:80px;
    height:80px;
    border-radius:40px;
    background-color:#e02626;
    text-align:center;
    line-height:80px;
    color:#fff;
    font-size:40px;;
    box-shadow:0 5px 10px rgba(224,38,38,0.5);
}
.msg{
    width:100%;
    padding:25% 0;
    height:50%;
    text-align:center;
    color:#e02626;
    font-size:20px;
}

.msg h3{
    font-size:30px;
    margin-bottom:0.5rem;
}

/* .msg p span{
    font-weight:600;
} */

.close{
    width:80%;
    height:45px;
    line-height:45px;
    margin:5rem auto 0;
    background-color:#e02626;
    color:#fff;
    border-radius:30px;
    box-shadow:0 5px 10px rgba(224,38,38,0.5);
}
/* header 영역 */
header{
    width:100%;
    max-width:500px;
    margin:0 auto;
    box-shadow: 0px 5px 10px #dfe0e2c7;
    /* background-color:#aaa; */
    /* padding:1rem; */
    /* background-color:#f00; */
}
.gnb{
    display:flex;
    justify-content:space-between;
    color:#2280ff;
}

.gnb h1{ 
    font-family: 'Poppins';
    font-size:26px;
    margin:1rem;
    font-weight:400;
    /* background-color:#0f0; */
} 

.gnb h1 a{
    color:#2280ff;
}
header i{
    margin:1rem;
    font-size:26px;
    /* background-color:#d0f; */
    padding-top:7px;
}

/* nav */
nav{
    width:100%;
    display:flex;
    position: relative;
}
nav ul{
    width:100%;
    /* margin:0 1rem; */
    display:none;
    background-color:#fff;
    position:absolute; top:5%; left:0;z-index:10;
}
nav ul li{
    height:80px;
    line-height:50px;
    font-size:20px;
    text-indent:1rem;
}
nav ul li a{
    display:inline-block;
    width:100%;
    color:#2280ff;

}
/* contents */
#quizCont{
    width:100%; 
    max-width:500px;
    display:flex;
    flex-direction:column;
    margin:0 auto;
    /* background-color:#aaa;*/
}

/* 타이틀 영역 */
#quizCont h2{
    width:60%;
    text-align:center;
    /* height:50px; */
    /* line-height:50px; */
    /* border-radius:50px; */
    /* background-color:#2280ff; */
    margin:3rem auto 0;
    color:#2280ff;
    font-size:26px;
}

#quizCont .subTit{
    margin:0 auto 3rem;
    color:#2280ff;
}
/* #quizCont h2:before{content:'QUIZ';} */
#quizCont form{
    width:100%;
}

#quizCont ul{
    width:100%;
}
#quizCont li{
    width:100%;
    /* background-color:#aa0; */
    
    position:relative;
    height:700px;
}

#quizCont .li2{
    height:800px;
}

#quizCont .li3{
    margin-bottom:5rem;
}


/* 퀴즈 이미지 영역 */
#quizCont .imgArea {
    width:100%;
    height:500px;
    overflow:hidden;
    background-color:#fff;
}

#quizCont .imgArea img{
    width:100%;
}

/* #quizCont .img3 img{
    height:100%;;
} */

/* 퀴즈내용영역 */
#quizCont .quizDesc{
    width:90%;
    background-color:rgba(255,255,255,0.7);
    position: absolute; top:50%; left:0;
    margin:0 5%;
    box-shadow:0px 3px 10px #cfcfcf;
    border-radius:5px;
    
}

#quizCont .desc{
    width:90%;
    margin:5%;
    
    
}

#quizCont .desc h3{
    width:100%; 
    padding-bottom:1rem;
    /* animation:textMove 1.5s linear Infinite alternate; */
}

#quizCont .quizText {
    width:100%;
    font-weight:500;
    font-size:18px;
}

#quizCont .hint{
    width:100%;
    font-size:16px;
    color:#494949;
    margin-top:0.3rem;
}


#quizCont .text {
    margin:3rem 0 2rem;
    border-bottom:1px solid #aaa;
}

#quizCont .text label {
    font-size:20px;
}

#quizCont .text input {
    border:none;
    height:30px;
    /* border-bottom:1px solid #aaa; */
    text-indent:10px;
    width:90%;
    font-size:20px;
    margin-left:0.4rem;
}

#submit {
    display:block;
    /* align-items:center; */
    border:none;
    width:80%; 
    height:50px;
    line-height:50px;
    margin:0 auto 10rem;
    border-radius:30px;
    background-color:#2280ff;
    font-size:20px;
    color:#fff;
    text-align:center;
    box-shadow:1px 3px 6px #2280ff9e;

}


#quizCont .imgZone{
    width:90%;
    margin:20px auto 0;
}

#quizCont .imgZone img{
    width:100%;
}