<!doctype html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>West Country Galleries</title>

    <style>
        body {
            margin: 0;
            font-family: "Helvetica Neue", Arial, sans-serif;
            background-color: #eee;
            font-size: 1.1em;
            line-height: 1.2;
            color: #222;

        }

        img {
            max-width: 100%;
            height: auto;
        }

        .wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            height: 100vh;
        }

        .banner {
            display: flex;
            flex-direction: column;
            gap: 6px;
            max-width: 400px;
            text-align: center;
            background-color: #fff;
            padding: 20px 40px;
            border-radius: 10px;
        }
    </style>
</head>

<body>
    <div class="wrapper">
        <div class="banner">
            <div><img src="/assets/logo.png" alt="West Country Galleries Logo" /></div>
            <p>West Country Galleries has now ceased trading. We would like to take this opportunity to sincerely thank
                all of our customers for their loyal support over the last 15 years. and wish you all the very best for
                the future and thank you for having been part of our journey.</p>
        </div>
    </div>
</body>

</html>