<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>Välkommen till Lindarnas hemsida</title>

<style>

    body {

        margin: 0;

        display: flex;

        justify-content: center;

        align-items: center;

        height: 100vh;

        background: #ffffff;

    }

    .leaf-text {

        font-size: 20px;

        font-weight: bold;

        fill: white;

        text-anchor: middle;

        dominant-baseline: middle;

    }

</style>

</head>

<body>

<svg width="400" height="400" viewBox="0 0 200 200">

    <!-- Grönt lindlöv (stiliserat) -->

    <path d="M100 10

             C40 40, 20 100, 60 150

             C80 170, 120 170, 140 150

             C180 100, 160 40, 100 10 Z"

          fill="#2e8b57"/>

    <!-- Text i mitten -->

    <text x="100" y="105" class="leaf-text">

        Välkommen till the-lindh.com

    </text>

</svg>

</body>

</html>