
    <!DOCTYPE html>
    <html>
    <head>
      <meta charset="UTF-8">
      <title>Welcome to the Forbidden Fun Zone!</title>
      <style>
        body {
          background-color: #008080;
          font-family: "Comic Sans MS", "Verdana", sans-serif;
          color: #000000;
          text-align: center;
          margin: 0;
          padding: 20px;
        }

        .window {
          background-color: #C0C0C0;
          border: 3px solid #808080;
          box-shadow: inset 2px 2px #FFFFFF, inset -2px -2px #404040;
          width: 600px;
          margin: 50px auto;
          padding: 10px;
        }

        .title-bar {
          background: linear-gradient(to right, #000080, #0000CD);
          color: white;
          font-weight: bold;
          text-align: left;
          padding: 4px 8px;
          font-size: 14px;
          border: 2px solid #000000;
        }

        .content {
          background-color: #C0C0C0;
          padding: 20px;
          border: 2px solid #808080;
          box-shadow: inset 2px 2px #FFFFFF, inset -2px -2px #404040;
        }

        h1 {
          font-size: 28px;
          text-shadow: 2px 2px #FFFFFF;
        }

        p {
          font-size: 16px;
        }

        a {
          color: #0000EE;
          text-decoration: underline;
        }

        a:hover {
          color: #FF0000;
        }

        img {
          margin-top: 15px;
          border: 3px outset #808080;
          background: #FFFFFF;
          width: 180px;
          height: auto;
        }

        marquee {
          background-color: #000080;
          color: #FFFF00;
          font-weight: bold;
          padding: 4px;
          border-top: 2px solid #404040;
          border-bottom: 2px solid #FFFFFF;
        }
      </style>
    </head>
    <body>
      <div class="window">
        <div class="title-bar">Forbidden Fun Zone - Internet Explorer 4.0</div>
        <div class="content">
          <h1>Welcome, Curious Traveler!</h1>
          <p>You have reached the <b>forbidden fun zone</b> — but do not worry, it is 100% silly-safe.</p>
          <p><small>Maybe try <a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ">bringing snacks</a> next time?</small></p>
          <img src="https://png.pngtree.com/png-vector/20240620/ourmid/pngtree-adventurous-dog-with-backpack-ready-for-hike-png-image_12794991.png" alt="wizard">
        </div>
      </div>
      <marquee behavior="alternate" scrollamount="6">💾 Welcome to the 90s! 💾</marquee>
    </body>
    </html>