<!doctype html>
<html lang="en">

<head>
  <meta charset="UTF-8" />
  <link rel="icon" href="/assets/favicon-DnKK5QEm.ico" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Kalina Club</title>

  <style>
    #splash-screen {
      position: fixed;
      top: 50%;
      left: 50%;
      background: white;
      display: flex;
      height: 100%;
      width: 100%;
      transform: translate(-50%, -50%);
      align-items: center;
      justify-content: center;
      z-index: 9999;
      opacity: 1;
      transition: all 15s linear;
      overflow: hidden;
    }

    #splash-screen.remove {
      animation: fadeout 0.7s forwards;
      z-index: 0;
    }

    @keyframes fadeout {
      to {
        visibility: hidden;
      }
    }
  </style>
  <script type="module" crossorigin src="/assets/index-BoV9ksgA.js"></script>
  <link rel="stylesheet" crossorigin href="/assets/index-BMjVSSdf.css">
</head>

<body>
  <div id="app"></div>
  <div id="splash-screen">
    <img alt="Logo" class="light" src="/assets/logo-sm--QkH-9VA.png" style="height: 5%;" />
  </div>
  <script>
    const appEl = document.querySelector('#app');
    new MutationObserver(() => {
      document.querySelector('#splash-screen')?.classList.add('remove');
    }).observe(appEl, { childList: true })
  </script>
</body>

</html>