<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Kitty Go: Food Tycoon</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 0;

            padding: 0;

            background-color: #f4f4f4;

        }

        header {

            background-color: #333;

            color: #fff;

            padding: 10px 20px;

            text-align: center;

        }

        .container {

            max-width: 1200px;

            margin: 20px auto;

            padding: 20px;

            background: #fff;

            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

        }

        .game-image {

            max-width: 100%;

            height: auto;

            display: block;

            margin: 0 auto;

        }

        .game-description {

            text-align: center;

            margin: 20px 0;

        }

        .game-description h2 {

            color: #333;

        }

        .game-description p {

            color: #666;

            font-size: 18px;

        }

    </style>

</head>

<body>

    <header>

        <h1>CozyGameTime - Kitty Go: Food Tycoon</h1>

    </header>

    <div class="container">

        <img src="https://drive.google.com/file/d/1CrrERqgVBciQKQyZvU8ign18-5l7euOA/view" alt="Kitty Go: Food Tycoon" class="game-image">

        <div class="game-description">

            <h2>Help Kitty become a Food Tycoon!</h2>

            <p>Help Kitty, the shopkeeper, start her business from opening a store🏠, cooking fast food🍔, hiring employees🐱🐱🐱, upgrading her drive-thru restaurant to increase revenue💵💵💵, and then expanding and opening new branches🏠🏠🏠, to ultimately become a food tycoon!</p>

        </div>

    </div>

</body>

</html>