<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Penny Bridge Productions LLC</title>

    <style>

        /* 1. Reset and Base Styles */

        * {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }


        body {

            background-color: #000000; /* Pure Black */

            color: #ffffff;           /* Pure White */

            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;

            height: 100vh;

            display: flex;

            justify-content: center;

            align-items: center;

            text-align: center;

            overflow: hidden;

        }


        /* 2. Container for the content */

        .container {

            padding: 20px;

            animation: fadeIn 3s ease-in-out;

        }


        /* 3. Typography */

        h1 {

            font-size: 2.5rem;

            font-weight: 300;          /* Light weight for a modern, cinematic look */

            letter-spacing: 8px;       /* Spaced out letters for elegance */

            text-transform: uppercase;

            margin-bottom: 1rem;

        }


        p {

            font-size: 1rem;

            font-weight: 200;

            letter-spacing: 3px;

            color: #888;              /* Subtle grey for the "Coming Soon" text */

            text-transform: uppercase;

        }


        /* 4. Animation for a professional entrance */

        @keyframes fadeIn {

            from {

                opacity: 0;

                transform: translateY(10px);

            }

            to {

                opacity: 1;

                transform: translateY(0);

            }

        }


        /* 5. Mobile Responsiveness */

        @media (max-width: 600px) {

            h1 {

                font-size: 1.5rem;

                letter-spacing: 4px;

            }

            p {

                font-size: 0.8rem;

                letter-spacing: 2px;

            }

        }

    </style>

</head>

<body>


    <div class="container">

        <h1>Penny Bridge Productions LLC</h1>

        <p>Coming Soon</p>

    </div>


</body>

</html>