.project-button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.project-button:hover {
  background-color: #45a049;
}

.project-button i {
  margin-left: 5px;
}
.iframe-container {
  width: 100%;
  height: 100%; /* Ensure iframe takes full height of its container */
  border: none;
  overflow: hidden; /* Hide any content that overflows the iframe */
}

/* Optional: Ensure the body inside the iframe has no margin or padding */
.iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  margin: 0;
  padding: 0;
}
