@charset "utf-8";


.lines
{
    color : #0d9ded;
    text-shadow: -1px 0 0 #FFF, 0 -1px 0 #FFF, 1px 0 0 #FFF, 0 1px 0 #FFF;
    position : absolute;
    white-space : nowrap;
    font-family : "Noto Sans KR", sans-serif;
    font-weight : 600;
    font-size : 25px;
    cursor : pointer;
}

.no-drag {-ms-user-select: none; -moz-user-select: -moz-none; -webkit-user-select: none; -khtml-user-select: none; user-select:none;}


html,body {
    margin:0;
    padding:0;
    height:100%;
    overflow: hidden;
    touch-action: none;
}

#wrapper {
	position:relative;
    min-height:100%;
}

#header {
	height:70px;
    background:#ccc;
}

#container {
    padding:20px;

}

#footer {
    position: absolute;
    bottom:0;
    width:100%;
    height: 35px;
    line-height: 35px;
}


div.typing-txt{
    display: none;
  }
  
  .typing {  
  /*position: absolute;*/ 
    display: inline-block; 
    animation-name: cursor; 
    animation-duration: 0.5s; 
    animation-iteration-count: infinite; 
   } 
   @keyframes cursor{ 
    0%{border-right: 1px solid #fff} 
    50%{border-right: 1px solid #000} 
    100%{border-right: 1px solid #fff} 
  }

  

@media ( max-width: 768px ) {
    .lines
    {
        font-size : 20px;
    }
}

@media ( max-width: 384px ) {
    .lines
    {
        font-size : 16px;
    }
}