<!DOCTYPE html>
<html>
<head>
    <title>Surf & Fries Lowveld</title>

    <style>
        body {
            margin: 0;
            background-color: hotpink;
            color: white;
            font-family: Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            text-align: center;
        }

        h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        p {
            font-size: 20px;
        }

        img {
            width: 200px;
            margin-bottom: 20px;
        }
    </style>
</head>

<body>
    <div>
        <!-- Logo (make sure image is in same folder) -->
        <img src="image_1778670638516.png" alt="Logo">

        <h1>Surf & Fries Lowveld</h1>
        <p>Welcome to our official page</p>
    </div>
</body>
</html>