<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>DesiDrop</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: Arial, sans-serif;
            background: #ff9000;
            color: #fff;
        }
        .container {
            text-align: center;
        }
        .logo {
            width: 80%;
            max-width: 500px; /* Adjust the size of your logo */
            margin-bottom: 20px;
            filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
        }
        .text {
            font-size: 1.5em;
            color: #fff;
            padding: 0 20px;
        }
    </style>
    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-500YQT6ZTF"></script>
    <script>
      window.dataLayer = window.dataLayer || [];
      function gtag(){dataLayer.push(arguments);}
      gtag('js', new Date());

      gtag('config', 'G-500YQT6ZTF');
    </script>
</head>
<body>
    <div class="container">
        <img src="dd-logo.png" alt="Logo" class="logo">
        <p class="text">Thank you for your support since we launched our site in 2008.</p>
        <p class="text">It&#39;s been an incredible journey, but we&#39;ve decided to close the site to give us time to focus on other projects.</p>
    </div>
</body>
</html>
