    body {
      margin: 0;
      height: 100vh;
      background-color: #000;
      overflow: hidden;
      position: relative;
      font-family: sans-serif;
    }

    .image-wrapper {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 250px;
      height: 250px;
      background-image: url("/./img/th_logo_white.svg");
      background-size: cover;
      background-position: center;
      transform: translate(-50%, -50%);
      opacity:0.1;
    }

    .text-below {
      position: absolute;
      width: 100%;
      top: calc(50% + 150px);
      left: 0;
      text-align: center;
      color: #fff;
      padding: 0 1rem;
      box-sizing: border-box;
    }

    .text-below h1 {
      margin: 0;
      font-size: 2rem;
      display: none;
    }

    .text-below p {
      margin: 0.5rem auto 0;
      font-size: 1rem;
      max-width: 600px;
      line-height: 1.6;
    }

    a {
        text-decoration: none;
        color: #ffffff;
    }