<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Big things will be here soon</title>

 <style>
  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: linear-gradient(to left, #67CBE2, #ACF0FF);
    font-family: Arial, sans-serif;
  }

  .wrap {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 40px 60px;
    overflow: hidden;
  }

  .stack {
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
  }

  .img-title {
    width: 100%;
    max-width: 520px;
    height: auto;
  }

  .img-main {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .img-loader {
    width: 100%;
    max-width: 460px;
    height: auto;
  }

  @media screen and (max-width: 500px) {
    .wrap {
      padding: 60px 20px 40px;
    }

    .stack {
      gap: 20px;
    }

    .img-title {
      max-width: 300px;
    }

    .img-main {
      max-width: 290px;
    }

    .img-loader {
      max-width: 320px;
    }
  }
</style>
</head>

<body>
  <div class="wrap">
    <div class="stack">
      <img src="/main-title.png" alt="" class="img-title">
      <img src="/central-img.png" alt="" class="img-main">
      <img src="/main-loader.png" alt="" class="img-loader">
    </div>
  </div>
</body>
</html>