@import url(https://cdn.jsdelivr.net/gh/moonspam/NanumSquare@1.0/nanumsquare.css); 
*{
    margin:0;
    padding:0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;  
}
html, body{
    height: 100%;
    background-color: rgb(148, 148, 148);
    font-family:'nanumsquare' ;
    text-shadow: rgb(0, 0, 0) 0 0 1px;
}
.container{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    align-items: center;
    width:100%;
    height:100%;
}
.head{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:220px;
    background: linear-gradient(rgb(63,63,63) 75%, rgb(148, 148, 148) 25%);
}
.head .menuBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1120px;
    height: 120px;
}
.head .logo{
    display: inline-block;
    width: 165px;
    height: 50px;
    background: url(../img/logo.png) no-repeat left center;
}
.head .main-menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 600px;
    /* background: rgb(134, 0, 139); */
}
.head .sub-menu{
    display: inline-block;
}
.head ul li{
    display: inline-block;
    cursor: pointer;
}
.head .sub-menu ul li{
    padding: 0 0 0 7px;
    font-size: 12px;
    font-weight: 700;
    color: rgb(139, 139, 139);    
}
.head .main-title{
    position: relative;
    display: inline-block;
    width: 1120px;
    height: 100px;
    font-size: 35px;
    padding-top: 33px;
    text-align: center;
    background: rgb(0, 0, 0);
    border-radius: 10px;
    font-weight: 300;
    letter-spacing: -2px;
    color: rgb(110, 110, 110);   
}
.content{
    width: 1120px;
    height:100%;
    margin: 10px 0;
    border-radius: 10px;
}
.wrap{    
    width: 100%;
    height:100%;
    padding: 0 40px;
    /* background: violet; */
}
.foot{ 
    display: flex;
    justify-content: center;
    width: 100%;
    height:auto;
    background: rgb(27, 27, 27);
}
.foot div{
    padding: 20px 20px;     
}
.foot div p{
    display: block;
    padding: 5px 20px;    
    font-size: 13px;
    color: rgb(156, 156, 156);      
}
#guideDiv, #descent-window {
    position: absolute;
    top:10px;
    left:10px;
    z-index: 70;
    background-color: #000000;
    border: 1px solid #1f1f1f;
}
