<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cellepay - API</title>
</head>

<style>
    .contain {
        display: grid;
        place-content: center;
        text-align: center;
    }

    .contain h1 {
        font-size: 6rem;
    }

    .contain .btn {
        display: inline-block;
        padding: 10px 20px;
        border-radius: 5px;
        background: red;
        color: #fff;
        font-size: 18px;
        font-weight: 700;
        text-decoration: none;
        width: fit-content;
        margin: auto;
    }
</style>

<body>
    <div class="contain">
        <h1>This is cellepay's <br> Api Endpoint</h1>
        <a href="https://cellepay.me" class="btn">Go to the main Website </a>
    </div>
</body>

</html>