/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  padding: 0;
  font-family: Verdana, Geneva, sans-serif;
  background-image: url('layout5.jpg');
  background-repeat: no-repeat;
  background-position: left top;
  background-attachment: fixed;
  background-size: auto; /* ✅ Prevents scaling */
  background-color: #121212;
}

    .container {
      position: relative;
      width: default;
      max-width: 1280px;
      margin: auto;
    }

    .overlay {
      position: fixed;;
      width: 100%;
      height: 100%;
      background-color: transparent;
      overflow: hidden;
      z-index: 1000; /* 🧱 Shields it from DOM interference */
    }
    
.nested-iframe {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border:none;
  overflow: hidden; /* Ensures inner content respects the curved edges */
  pointer-events: auto;
  font-family: Georgia, serif;
}

    
/* 👇 Unnested properly */
.iframe-wrapper {
  position: fixed;
  top: 110px;
  left: 638px;
  width: 600px;
  height: 600px;
  pointer-events: none;
  z-index: 9999;
  transform: translateZ(0);
  will-change: transform;
} 