<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Kirsten Loscalzo, MD | Gastroenterology Fellow</title>

    <style>

        :root {

            --primary-color: #003c71; /* Brown University Health Blue */

            --secondary-color: #4e555b;

            --background-color: #f8f9fa;

            --card-background: #ffffff;

            --text-color: #212529;

            --border-color: #e9ecef;

        }


        * {

            box-sizing: border-box;

            margin: 0;

            padding: 0;

        }


        body {

            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

            background-color: var(--background-color);

            color: var(--text-color);

            line-height: 1.6;

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

            padding: 20px;

        }


        .container {

            background-color: var(--card-background);

            max-width: 550px;

            width: 100%;

            padding: 40px 30px;

            border-radius: 12px;

            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);

            text-align: center;

            border-top: 5px solid var(--primary-color);

        }


        .profile-title {

            font-size: 1.8rem;

            font-weight: 700;

            color: var(--primary-color);

            margin-bottom: 5px;

            letter-spacing: -0.5px;

        }


        .profile-subtitle {

            font-size: 1.1rem;

            color: var(--secondary-color);

            font-weight: 500;

            margin-bottom: 25px;

        }


        .divider {

            height: 1px;

            background-color: var(--border-color);

            width: 80%;

            margin: 0 auto 25px auto;

        }


        .info-block {

            margin-bottom: 25px;

        }


        .info-text {

            font-size: 1.05rem;

            color: var(--text-color);

            margin-bottom: 8px;

        }


        .institution-tag {

            display: inline-block;

            background-color: rgba(0, 60, 113, 0.06);

            color: var(--primary-color);

            padding: 6px 14px;

            border-radius: 20px;

            font-size: 0.9rem;

            font-weight: 600;

            margin-top: 5px;

        }


        .status-footer {

            margin-top: 35px;

            font-size: 0.85rem;

            color: #999;

            letter-spacing: 0.5px;

            text-transform: uppercase;

        }

    </style>

</head>

<body>


    <div class="container">

        <h1 class="profile-title">Kirsten Loscalzo, MD</h1>

        <div class="profile-subtitle">Gastroenterology Fellow</div>

        

        <div class="divider"></div>

        

        <div class="info-block">

            <p class="info-text">Division of Gastroenterology & Hepatology</p>

            <span class="institution-tag">Brown University Health</span>

        </div>


        <div class="status-footer">

            Personal Website &mdash; Coming Soon

        </div>

    </div>


</body>

</html>