Was zeichnet uns aus?

 

<!-- Responsive iFrame für LGT / spized -->
 <style>
   /* 1) Standard-Layout (Desktop & große Tablets) */
   .lgt-iframe-wrapper {
     width: 100%;
     text-align: center;
   } 

  .lgt-iframe-wrapper iframe {
     border: none;
     width: 80%;          /* zentriert mit etwas Rand */
     max-width: 1200px;   /* nicht breiter als 1200 px */
     height: 900px;      /* Desktop-Höhe anpassen!  */
     display: inline-block;
   } 

  /* 2) Tablet-Porträt & kleine Laptops (≤ 1024 px Breite) */
   @media (max-width: 1024px) {
     .lgt-iframe-wrapper iframe {
       width: 90%;
       max-width: 100%;
       height: 1200px;    /* etwas höhere Bühne */
     }
   } 

  /* 3) Smartphones (≤ 600 px Breite) */
   @media (max-width: 600px) {
     .lgt-iframe-wrapper iframe {
       width: 100%;       /* volle Breite auf Mobile */
       height: 800px;    /* großzügige Höhe – nach Bedarf tweakbar */
     }
   }
 </style> 

<div class="lgt-iframe-wrapper">
 <iframe
     src="https://www.spized.com/de/lgt/01971733b8827f159adb1ea225bc836f/start"
     loading="lazy"
     allow="encrypted-media; picture-in-picture"
     allowfullscreen
></iframe>
</div>