@charset "utf-8";
@import url(reset.css);

/*************** 전체 영역 레이아웃 구성 시작  ************** */
html{-ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; word-break: keep-all; }
body{
    font-family: 'nanumsquare';
    font-weight: bold;
	font-size: 0;
    overflow-y:hidden; 
    background-image:url('images/bg.png');
    background-size: cover;
    background-repeat: no-repeat;
	/* IE - vh 안 먹을때 스크롤바 없애기 */
}

#wrapper{
	width: 100%;
    height: 100vh;
    z-index: 1000;
    position:relative;
}

/*************** 공통 영역 선언 시작  ************** */

iframe{
	width: 500px;
	height: 900px;
	border: 5px solid rgba(0,0,0,.1);
	position: absolute;
	left: 60%;
	top	: 50%;
    transform: translate(-110%, -50%);
    z-index: 1;
	background-color: #fff;
}
.text_box{
	width: 400px;
	height: 700px;
	position: absolute;
	left: 60%;
	top	: 50%;
	transform: translate(0, -50%);
    z-index: 1;
    text-align: center;
    background: #fff;
    border-radius: 5px;
}
.text_box h1{
    margin: 10px 10px 60px;
    height:70px;
}
.text_box h1 img{ 
  width: 120px;
}
.text_box ul{
	width: 100%;
	font-size: 22px;
	overflow: hidden;
}
.text_box ul li{
	margin-bottom: 20px;
	line-height: 40px;
}
.text_box ul li span{
	display: block;
	color: #ff6991;
}
.text_box ul li:first-child{
	width: 100%;
	color: #fff;
	background-color: #ff6991;
	position: relative;
	font-size: 16px;
}
 
.text_box ul li:nth-child(2) em{
	color: #ff6991;
}
.text_box ul li:nth-child(3){
	font-size: 26px;
	line-height: 60px;
	margin-bottom: 20px;
}
.text_box ul li:nth-child(3) span{
	color: #333;
	font-size: 27px;
}
.text_box ul li:nth-child(3) em{
  color: #db2555;
  margin-left: 5px;
}
.text_box ul li:nth-child(3) img{
  width: 160px;
  vertical-align: text-bottom;
}
.text_box ul li:last-child{ 
  width: 100%; font-size: 0; line-height: 20px;
 }
.text_box ul li:last-child span{font-size: 13px; color:rgb(51, 51, 51);}
.text_box ul li:last-child img{     
  display: inline-block;
  width: 40%;
  margin: 0 3%;
  border-radius: 30px;
  box-shadow: -2px 2px 10px 10px rgba(0,0,0,0.1); 
}

/* 배경효과 */


/* 
body {
    margin: 0;
  }
  
  .box {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    background-image: linear-gradient(120deg, #fdf7a1 0%, #f2fbc2 100%);
  }
  
  .effect {
    position: fixed;
    top: 22%;
    left: 160px;
    animation: spin 500s infinite linear;
    border-radius: 50%;
    transform-origin: 50% 48%;
    width: 800px;
    height: 700px; 
    background-image: linear-gradient(15deg, rgba(219,220,215,0.2) 0%, rgba(221,220,215,0.1) 24%, rgba(227,201,204,0.1) 30%, rgba(231,98,125,0.1) 46%, rgba(184,35,90,0.1) 59%, rgba(128,19,87,0.1) 71%, rgba(61,22,53,0.1) 84%, rgba(28,26,39,0.1) 100%);
  /* Alternate color scheme:
    background-image: linear-gradient(15deg, rgba(19, 84, 122, 0.2) 0%, rgba(128, 208, 199, 0.2) 100%);*/
  }
  
  .effect:nth-child(2) {
    left: 15%;
    animation-duration: 15s;
  }
  
  .effect:nth-child(3) {
    left: 10%;
    margin-top: 10px;
    animation-duration: 17s;
  }
  
  .effect:nth-child(4) {
    left: 10%;
    animation-duration: 19s;
  }
  
  .effect:nth-child(5) {
    left: 15%;
    margin-top: 10px;
    animation-duration: 21s;
  }
  
  .effect:nth-child(6) {
    left: 20%;
    animation-duration: 22s;
  }
  
  .effect:nth-child(7) {
    left: 25%;
    margin-top: 10px;
    animation-duration: 23s;
  }
  
  .effect:nth-child(8) {
    left: 30%;
    animation-duration: 15s;
  }
  
  .effect:nth-child(9) {
    left: 35%;
    margin-top: 10px;
    animation-duration: 17s;
  }
  
  .effect:nth-child(10) {
    left: 40%;
    animation-duration: 19s;
  }
  
  .effect:nth-child(11) {
    left: 45%;
    margin-top: 10px;
    animation-duration: 21s;
  }
  
  .effect:nth-child(12) {
    left: 50%;
    animation-duration: 22s;
  }
  
  .effect:nth-child(13) {
    left: 55%;
    margin-top: 10px;
    animation-duration: 23s;
  }
  
  @keyframes spin {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
  }
 */

