<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>A fresh website is coming soon</title>

  <style>
    * { margin: 0; padding: 0; box-sizing: border-box; overflow: hidden; }

    .container {
      background: #091420;
      width: 100vw;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .container-block {
      padding: 0 16px;
      display: flex;
      flex-direction: column;
      gap: 40px;
      width: 90%;
    }

    .title-desktop {
      width: 100%;
      max-width: 998px;
      height: auto;
      margin: 0 auto;
    }

    .loader {
      width: 100%;
      max-width: 986px;
      height: auto;
      margin: 0 auto;
    }

    .text-desktop {
      width: 100%;
      max-width: 998px;
      height: auto;
      margin: 0 auto;
    }

    .title-mobile,
    .text-mobile {
      display: none;
    }

    @media screen and (max-width: 710px) {
      .container {
        align-items: flex-start;
        padding-top: 100px;
      }

      .container-block {
        width: 100%;
      }

      .title-desktop,
      .text-desktop {
        display: none;
      }

      .title-mobile {
        display: block;
        width: 100%;
        max-width: 340px;
        height: auto;
        margin: 0 auto;
      }

      .text-mobile {
        display: block;
        width: 100%;
        max-width: 340px;
        height: auto;
        margin: 0 auto;
      }
    }
  </style>
</head>

<body>
  <div class="container">
    <div class="container-block">
      <img src="/text.png" alt="" class="title-desktop">
      <img src="/text-mob.png" alt="" class="title-mobile">

      <img src="/loader.png" alt="" class="loader">

      <img src="/text-desk.png" alt="" class="text-desktop">
      <img src="/text-desk-mob.png" alt="" class="text-mobile">
    </div>
  </div>
</body>
</html>