/* Make the page background dark */
body {
  margin: 0;
  padding: 0;
  background-color: #121212; /* dark background */
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Style the iframe with cyan border */
iframe {
  border: 4px solid #00ffff; /* cyan border */
  border-radius: 12px;
  width: 90%;
  height: 90%;
  box-sizing: border-box;
}
