body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
  font-family: 'Courier New', monospace;
  background-color: black;
}

.scene {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  z-index: 0;
}

/* Adjust the screen position and size to match the laptop screen dimensions */
.screen {
  position: absolute;
  top: 8%;  /* Adjust this value based on where the laptop screen is located in your image */
  left: 25%;  /* Adjust this value to place the screen correctly */
  width: 676px;  /* Exact width of the laptop screen */
  height: 438px;  /* Exact height of the laptop screen */
  border: 1px solid black;
  z-index: 2;
  overflow: hidden;
}

/* Locked menu at the top of the screen */
.menu {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
  padding: 10px;
  font-size: 1.2rem;
  z-index: 3;
}

.menu a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

.menu a:hover {
  color: red;
}

/* Laptop screen iframe */
.screen iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Scrollbar for the iframe content */
iframe {
  overflow: auto;
}
