
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Reevue</title>
    <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap" rel="stylesheet">
    <style>
        :root {
            --primary-color: #2c3e50; /* Darker text */
            --secondary-color: #7f8c8d; /* Muted grey for body text */
            --accent-color: #3498db; /* A friendly blue */
            --background-start: #f7f7f7;
            --background-end: #e2e2e2;
            --font-family: 'Poppins', sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body, html {
            height: 100%;
            font-family: var(--font-family);
            color: var(--primary-color);
            /* Soft radial gradient for a modern feel */
            background: var(--background-start);
            background: radial-gradient(circle, var(--background-start) 0%, var(--background-end) 100%);
            display: flex; /* Using flexbox for easy centering */
            justify-content: center;
            align-items: center;
        }

        .container {
            text-align: center;
            padding: 70px 60px; /* More horizontal padding */
            max-width: 650px;
            background-color: #fff;
            border-radius: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); /* Clearer shadow */
            transform: translateY(0);
            transition: transform 0.3s ease-in-out;
        }

        /* Subtle hover effect on the content box */
        .container:hover {
            transform: translateY(-5px);
        }

        .logo {
            max-width: 300px;
            height: auto;
            margin-bottom: 25px;
            /* filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.05)); -- REMOVED */
        }

        .spacer {
            height:1px;
            background:#d8d8d8;
            margin:30px 0;
        }

        h1 {
            font-size: 3.2rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        p {
            font-size: 1.25rem;
            margin-bottom: 40px;
            font-weight: 300;
            color: var(--secondary-color);
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px;
                margin: 20px;
            }

            h1 {
                font-size: 2.5rem;
            }

            p {
                font-size: 1.1rem;
            }

            .logo {
                max-width: 180px;
            }
        }
    </style>
</head>
<body>

    <div class="container">
        <div class="content">
            <img src="/logo2.jpg" alt="Reevue Logo" class="logo">
            <div class="spacer"></div>
            <h1>We're launching soon!</h1>
            <p>We are working on something amazing. Stay tuned for our grand launch!</p>
        </div>
    </div>

</body>
</html>