      html {
        height: 100%;
      }
      body {
        font-family: 'Roboto', sans-serif;
        background-color: #070c06;
        margin: 0;
        height: 100%;
      }
      .out {
        height: 100%;
      }
      div {
        text-align: center;
      }
      a:link,
      a:visited {
        text-decoration: none;
        cursor: pointer;
      }
      #pcvideo {
        object-fit: cover;
        width: 100vw;
        height: 105vh;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: unset;
        z-index: -1;
      }
      .link {
        background-size: contain;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 60px;
        font-weight: 800;
        cursor: pointer;
        padding: 10px 0px;
      }
      .texture {
        background-image: linear-gradient(
          to right,
          #f6f0b8 0,
          #cb9b51 22%,
          #f6e27a 45%,
          #f6f2c0 50%,
          #f6e27a 55%,
          #cb9b51 78%,
          #379052 100%
        );
        color: transparent;
        -webkit-background-clip: text;
        filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
      }
      .pcbox {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
	  }
      .logo {
        width: 30%;
        margin-top: 20px;
        margin-bottom: 10px;
      }
      .footer {
        line-height: 2;
        margin: 0 auto;
        width: 90%;
        padding-bottom: 40px;
        font-weight: 800;
        font-size: 23px;
        background: -webkit-linear-gradient(top, rgb(255 255 255) 20%, rgb(205 206 206) 100%) text;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        margin-top: 20px;
      }
      .urlWrap {
        width: 100%;
        padding-top: 32vh;
      }
      .urlbox:last-child {
        margin-bottom: 0px;
      }
      .urlbox img {
        width: 45%;
      }
      .mobilebox {
        display: none;
      }
      #mbvideo {
        display: none;
      }
      #titleLogo {
        position: absolute;
        width: 100vw;
        height: 1400px;
        left: 50%;
        transform: translateX(-50%);
        overflow: hidden;
        position: fixed;
        margin-top: 30px;
      }
      #titleLogo img {
        width: 20%;
      }
      #code1,
      #code2 {
        -webkit-text-fill-color: #fbd77c;
      }
      @media (max-width: 1025px) {
        #titleLogo {
          height: 85%;
          width: 100vw;
        }
        #mbvideo {
          display: block;
          position: fixed;
          top: 0;
          left: 0;
          pointer-events: unset;
          z-index: -1;
          object-fit: inherit;
          object-fit: cover;
          width: 100vw;
          height: 100vh;
        }
        #pcvideo {
          display: none;
        }
        .pcbox {
          display: none;
        }
        .mobilebox {
          display: flex;
          flex-direction: column;
          align-items: center;
          height: 100%;
          justify-content: center;
        }
        .mlogo {
          width: 30vh;
          margin-top: 4%;
          margin-bottom: 30vh;
        }
        .mobileinner {
        }
        .urlbox {
          margin-bottom: 15px;
          width: 100%;
          text-align: center;
          display: flex;
          justify-content: center;
          padding-left: 0px;
        }
        .link {
          width: 100%;
          font-size: 5.8vh;
          background-size: 100% 100%;
          padding: 0px 0px;
        }
        .footer {
          width: 100%;
          padding-top: 0px;
          padding-bottom: 0px;
          font-size: 17px;
        }
        .texture {
          margin-bottom: 10px;
        }
      }
      .gold {
        line-height: 1;
        text-align: center;
        background: linear-gradient(
          90deg,
          #f6f0b8 0,
          #cb9b51 22%,
          #f6e27a 45%,
          #f6f2c0 50%,
          #f6e27a 55%,
          #cb9b51 78%,
          #379052 100%
        );
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: shine 5s infinite;
        background-size: 200%;
        background-position: left;
        filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.7));
      }
      @keyframes shine {
        to {
          background-position: right;
        }
      }