<!DOCTYPE html>
<html>
<head>
<style>
  body {
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
  }
  .message {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }
</style>
</head>
<body>

<div class="message">
  <p>Redirecting you to Cultaz.com...</p>
  <p>If you are not redirected automatically, <a href="https://cultaz.com">click here</a>.</p>
</div>

<script>
  // Function to redirect
  function redirectToCultaz() {
    window.location.href = "https://cultaz.com";
  }

  // Redirect after a short delay (e.g., 2 seconds)
  setTimeout(redirectToCultaz, 0); // 2000 milliseconds = 2 seconds
</script>

</body>
</html>