
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Welcome</title>
    <style>
        body {
            background: #0f172a;
            color: #e2e8f0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            font-family: Arial, sans-serif;
        }
        .box {
            text-align: center;
            padding: 40px;
            border-radius: 12px;
            background: #1e293b;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1 {
            margin: 0;
            font-size: 32px;
        }
        p {
            margin-top: 10px;
            color: #94a3b8;
        }
    </style>
</head>
<body>
    <div class="box">
        <h1>Hello 👋</h1>
        <p>Your Nginx server is working</p>
    </div>
</body>
</html>