
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans&family=Noto+Sans+KR:wght@500&display=swap');

*{
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-family: 'Noto Sans', sans-serif;
font-family: 'Noto Sans KR', sans-serif;
  }
  
  body{background-image: url(../images/bg.png);background-repeat: no-repeat;background-size: 100% 100%;background-attachment: fixed;}
  
  
  .container {}
  .center-container {
      width: 700px;
      margin: auto;
      padding: 50px 0px;
  }
  .center-container .logo {
      display: flex;
      justify-content: center;
  }
  .center-container .logo img {}
  .center-container .sub-logo  {
      display: flex;
      justify-content: center;
      margin: 30px 0px 10px 0px;
  }
  .center-container .sub-logo img  {}
  .container .rows {}
  .container .box-container {}
  .container .box-container .box {
    width: 650px;
    height: 90px;
    background-image: url(../images/box.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
}
  .container .telegram {
    display: flex;
    justify-content: center;
    padding: 20px 0px;
}
  .container .telegram img {
    cursor: pointer;
}
  .container .text-footer {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}
  .container .text-footer img {}
  .container .text-footer img {}
  

@media all and (max-width:580px) {
	.center-container {
		  width: 100%;
		  margin: auto;
	  }
	    
	 .container .box-container .box {width: 100%;}

	.center-container .logo img {width: 70%;}
	.center-container .sub-logo img {width: 100%;}
	.container .telegram img {width: 80%;}
	.container .text-footer img {width: 90%;}

}