<!DOCTYPE html>

<html>

<head>

    <title>Mediverify Solution</title>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <style>

        body {

            margin: 0;

            font-family: -apple-system, BlinkMacSystemFont, sans-serif;

            background: linear-gradient(135deg, #0B132B, #1C2541);

            color: white;

            text-align: center;

            padding-top: 120px;

        }

        h1 {

            font-size: 48px;

            margin-bottom: 10px;

        }

        p {

            font-size: 22px;

            color: #C5A14A;

        }

        .button {

            display: inline-block;

            margin-top: 40px;

            padding: 12px 30px;

            background: #C5A14A;

            color: #0B132B;

            text-decoration: none;

            font-weight: bold;

            border-radius: 30px;

        }

    </style>

</head>

<body>

    <h1>Mediverify Solution</h1>

    <p>Healthcare Verification Authority</p>

    <a href="#" class="button">Coming Soon</a>

</body>

</html>