<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Torslanda Grill</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            text-align: center;

            background-color: #f9f9f9;

            margin: 0;

            padding: 0;

        }

        .container {

            margin-top: 50px;

        }

        .image {

            width: 100%;

            max-width: 600px;

        }

        .coming-soon {

            font-size: 2rem;

            color: #333;

            margin: 20px 0;

        }

        .contact {

            font-size: 1.2rem;

            color: #555;

        }

    </style>

</head>

<body>

    <div class="container">

        <img src="torslanda-grill.webp" alt="Torslanda Grill Coming Soon" class="image">

        <p class="coming-soon">Torslanda Grill<br>Coming Soon!</p>

        <p class="contact">Tel: 073 978 000 8</p>

    </div>

</body>

</html>