<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Team Park Ventures</title>

    <style>

        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');


        body {

            margin: 0;

            padding: 0;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            font-family: 'Poppins', sans-serif;

            background-color: #fff;

            color: #000;

        }

        .container {

            text-align: left;

            max-width: 600px;

        }

        h1 {

            font-size: 2.5rem;

            margin-bottom: 1rem;

        }

        p {

            font-size: 1rem;

            line-height: 1.5;

            margin-bottom: 2rem;

        }

        .button {

            display: inline-block;

            padding: 0.75rem 1.5rem;

            font-size: 1rem;

            font-weight: bold;

            color: #fff;

            background-color: #000;

            border: none;

            border-radius: 5px;

            text-decoration: none;

            cursor: pointer;

            transition: background-color 0.3s;

        }

        .button:hover {

            background-color: #333;

        }

    </style>

</head>

<body>

    <div class="container">

        <h1>Team Park Ventures</h1>

        <p>Building delightful mobile experiences. We're a bootstrapped team of builders united by our passion for creating impactful technology.</p>

        <a href="mailto:tim@teamparkventures.com" class="button">Contact Us</a>

    </div>

</body>

</html>