
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Avilla Home</title>
    <style>
        body { font-family: sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; background: #f0f2f5; margin: 0; }
        .card { background: white; padding: 2rem; border-radius: 12px; shadow: 0 4px 6px rgba(0,0,0,0.1); text-align: center; max-width: 90%; }
        h1 { color: #1c1e21; margin-bottom: 0.5rem; }
        p { color: #606770; margin-top: 0; }
        .house-photo { max-width: 100%; height: auto; border-radius: 8px; margin-bottom: 1.5rem; box-shadow: 0 2px 4px rgba(0,0,0,0.1); }
    </style>
</head>
<body>
    <div class="card">
        <img src="https://maps.googleapis.com/maps/api/streetview?location=3+Christopher+Dr%2C+Johnston%2C+RI+02919&size=1536x1152&key=AIzaSyARFMLB1na-BBWf7_R3-5YOQQaHqEJf6RQ&source=outdoor&&signature=o4LELGPEViI_9SAEyfT2aTJCyBU=" alt="The Avilla Home" class="house-photo">
        <h1>Welcome to the Avilla Home</h1>
        <p>Private Resident Services</p>
    </div>
</body>
</html>