<html>
          <body style="margin:0;background:black;display:flex;align-items:center;justify-content:center;height:100vh;">
            <img src="https://i.goopics.net/zi1g8k.png" style="max-width:100%;max-height:100%;">
            <img id="slideshow" src="https://i.goopics.net/nk3875.png" style="max-width:100%;max-height:100%;">
            <script>
            const images = ["https://i.goopics.net/nk3875.png", "https://i.goopics.net/9sukp9.png"];
            let index = 0;
            setInterval(() => {
              index = (index + 1) % images.length;
              document.getElementById("slideshow").src = images[index];
            }, 20000);
            </script>
          </body>
        </html>