
            <!DOCTYPE html>
            <html>
            <head>
                <title>Self-Privacy</title>
                <style>
                body {
                    font-family: "Helvetica Neue", Arial, sans-serif;
                    text-align: center;
                    padding: 50px;
                    background: #1c1c1e; /* dark background */
                    color: #c0c0c0; /* light gray for paragraph */
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    align-items: center;
                    height: 100vh;
                    margin: 0;
                }

                h1 {
                    font-size: 3em;
                    color: #ffa94d; /* soft orange heading */
                    opacity: 0;
                    animation: fadeIn 2s forwards;
                }

                p {
                    font-size: 1.2em;
                    color: #c0c0c0; /* light gray */
                    margin-top: 20px;
                    opacity: 0;
                    animation: fadeIn 2s 1s forwards; /* delayed fade-in */
                }

                @keyframes fadeIn {
                    to { opacity: 1; }
                }
                </style>
            </head>
            <body>
                <h1>Welcome to Self-Privacy!</h1>
                <p>Site under construction. Check back soon.</p>
            </body>
            </html>