@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic+Coding:wght@400;700&family=Noto+Sans+KR:wght@100..900&display=swap');


/*S 폰트 예시*/

.nanum-gothic-coding-regular {
  font-family: "Nanum Gothic Coding", monospace;
  font-weight: 400;
  font-style: normal;
}

// <uniquifier>: Use a unique and descriptive class name
// <weight>: Use a value from 100 to 900

.noto-sans-kr-<uniquifier> {
  font-family: "Noto Sans KR", sans-serif;
  font-weight: <weight>;
  font-style: normal;
}



body{width: 100%; height: 100%; margin: 0; padding: 0; 
	background: rgb(254,253,255);
background: linear-gradient(142deg, rgba(254,253,255,1) 17%, rgba(232,228,245,1) 100%);
}
body div{box-sizing: border-box;}
.bodywrap{width: 980px; height: 100%; margin: 0 auto;}

/*nav 시작*/
nav{width: 100%; height: 170px;}
.logo{width: 150px; margin: 0 auto; padding: 25px 0 10px 0;}
.buttonwrap{width: 432px; margin: 0 auto; padding: 5px 10px;}
.buttonwrap button{border: 0; background: 0; padding: 10px 20px;
	color: #ac2222;
  	font-family: "Noto Sans KR", sans-serif;
  	font-weight: 600;
  	font-style: normal;
  	font-size: 15px;
}
.buttonwrap button:hover{ color:#000 ; cursor: pointer}
	
	
	
/*내용*/
.content{width: 100%; overflow: hidden; 
	font-family: "Noto Sans KR", sans-serif;
  	font-weight: 500;
  	font-style: normal;
  	font-size: 14px; }
.content>div:first-child{float: left;}
.content>div:nth-child(2){float: right;}
.content .text{width: 63%; height: 600px;}
.content .text span{
  	font-weight: 800;
  	font-size: 15px;
	line-height: 40px;
	color: #ac2222;
}
.content .downloadbutton{width: 33%; height: 600px; margin-left: 10px;}


.content .textTitle{overflow: hidden;}
.content .textTitle div{float:left;}
.content .textTitle img{width: 250px; padding-top: 10px;}
.content .strong{font-size: 18px; font-weight: 700; line-height: 10px; padding: 33px 0 0;}
.content .downloadbutton img{width: 100%;}

/*버튼 디자인-------------------------------------------------*/

.content .downloadbutton button{
}
.content .downloadbutton button:hover{
	background:none;
	color: #ac2222;
	transition-duration: 0.5s;
}

.custom-btn {
  	color: #fff;
  	background: transparent;
  	cursor: pointer;
  	transition: all 0.3s ease;
  	position: relative;
  	display: inline-block;
  	box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
  	 7px 7px 20px 0px rgba(0,0,0,.1),
  	 4px 4px 5px 0px rgba(0,0,0,.1);
  	outline: none;
	width: 100%; height: 100px; 
	margin: 91px 0 30px 0; 
	font-weight: 700;
	font-size: 17px;
	border-radius: 5px;
}

/* 11 */
.btn-11 {
  border: none;
  background: rgb(216, 0, 0);
  background: linear-gradient(0deg, rgb(216, 0, 0) 0%, rgb(175, 46, 46) 100%);
  color: #fff;
  overflow: hidden;
}
.btn-11:hover {
    text-decoration: none;
    color: #fff;
}
.btn-11:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-btn1 3s ease-in-out infinite;
}
.btn-11:hover{
  opacity: .7;
}
.btn-11:active{
  box-shadow:  4px 4px 6px 0 rgba(255,255,255,.3),
              -4px -4px 6px 0 rgba(116, 125, 136, .2), 
    inset -4px -4px 6px 0 rgba(255,255,255,.2),
    inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
}

@-webkit-keyframes shiny-btn1 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}