<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>WBD Show Technology</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        
        body {
            background-color: #000000;
            color: #ffffff;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            align-items: center;
            justify-content: center;
        }
        
        .container {
            text-align: center;
            padding: 2rem;
            max-width: 1200px;
        }
        
        .logo {
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .logo img {
            max-width: 300px;
            height: auto;
        }
        
        h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }
        
        .tagline {
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #cccccc;
        }
        
        footer {
            margin-top: 3rem;
            color: #999999;
        }
    </style>
</head>
<body>
    <div class="container">
        <div class="logo">
            <img src="https://wbdshowtech.com/wbd.png" alt="WBD Show Technology Logo">
        </div>
        <h1>Welcome to WBD Show Technology</h1>
        <p class="tagline">Magical Mischief and Industry Leading Technology</p>
        <footer>
            <p>© 2025 Warner Bros Studio Tours and Retail. All rights reserved.</p>
        </footer>
    </div>
</body>
</html>