<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

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

    <title>Mary Jane's Cannabis Clinic | Coming Soon | Hua Hin Thailand</title>

    <meta name="description" content="Mary Jane's Cannabis Clinic - Coming Soon to Prapokklao Rd, Hua Hin, Thailand. Open 11 AM - 11 PM Everyday.">

    <link rel="icon" type="image/x-icon" href="favicon.ico">

    <style>

        * { margin: 0; padding: 0; box-sizing: border-box; }

        html, body { 

            height: 100%; 

            background-color: #1a3a2a; 

        }

        body {

            display: flex;

            justify-content: center;

            align-items: center;

            min-height: 100vh;

        }

        .mobile { 

            display: block; 

            max-width: 100%; 

            max-height: 100vh; 

            width: auto;

            height: auto;

        }

        .desktop { display: none; }

        

        @media (min-width: 768px) {

            .mobile { display: none; }

            .desktop { 

                display: block; 

                width: 100%; 

                max-height: 100vh; 

                object-fit: contain; 

            }

        }

    </style>

</head>

<body>

    <img src="mobile.png" alt="Mary Jane's Cannabis Clinic - Coming Soon - Hua Hin Thailand" class="mobile">

    <img src="desktop.png" alt="Mary Jane's Cannabis Clinic - Coming Soon - Hua Hin Thailand" class="desktop">

</body>

</html>