* {
    font-family: 'Noto Sans KR', sans-serif;
    color: #fff;
    box-sizing: border-box;
 }

 html, body {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
 }

 body {
    background-color: #000;
    background-image:url('../img/bg.jpg');
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
 }
 .body_wrap {
    max-width: 1200px;
    margin:0 auto;
    padding-top: 200px;
 }

 img {
    max-width: 100%;
    vertical-align: top;
 }

 .logo {
   display: block;
   margin: 0 auto;
   width: 300px;
 }

 .txt {
   max-width: 800px;
   margin:0 auto;
   text-align: center;
   font-size: 18px;
   font-weight: 500;
   line-height: 32px;
   word-break: keep-all;
   padding: 40px 0;
 }

 .txt2 {
   text-align: center;
   font-weight: 500;
   font-size: 26px;
   margin-top: 40px;
 }
 .addr {
   max-width: 600px;
   margin: 0 auto;
   padding: 35px 60px;
   border: 3px solid #115077;
   box-shadow: 0 0 10px #115077, inset 0 0 10px #115077;
   border-radius: 20px;
   font-weight: 600;
   color: #19b3e4;
   text-shadow: 0px 0px 5px #19b3e4;
   text-align: center;
   font-size: 40px;
 }

 .domain {
   padding: 20px 25px 25px 25px;
   border: 2px solid #115077;
   box-shadow: 0 0 7px #115077, inset 0 0 7px #115077;
   border-radius: 15px;
   line-height: 1;
   background-color: #000;
   margin-top: 30px;
   text-shadow: none !important;
   text-transform: uppercase;
 }

  .domain a {
      text-decoration: none;
  }

  .footer {
      width: 100%;
      margin-top: 200px;
  }
  .line {
   width: 100%;
   height: 3px;
   background-color: #005f8b;
   box-shadow: 0 0 10px #008ecf, inset 0 0 10px #008ecf;
  }
  .copy {
   font-size: 16px;
   text-align: center;
   padding: 20px 0;
  }

  @media screen and (max-width: 720px) {
   .body_wrap {
      padding-top: 40px;
   }
   .logo {
      width: 220px;
   }
   .txt {
      font-size: 16px;
      line-height: 24px;
      padding: 30px 10px;
   }
   .txt2 {
      font-size: 18px;
      margin-top: 30px;
   }
   .addr {
      width: 95%;
      font-size: 24px;
      padding: 20px 20px;
   }
   .domain {
      margin-top: 20px;
   }
   .footer {
      margin: 0;
      position: fixed;
      width: 100%;
      left: 0;
      bottom: 0;
   }
   .line {
      height: 2px;
   }
   .copy {
      font-size: 14px;
      padding: 10px 0 15px 0;
   }
  }