body,
html {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 10px;
}

footer {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 10px;
}

iframe {
  flex-grow: 1;
  width: 100%;
}

footer {
  background-color: #03919b; /* Dark background for the footer */
  color: white;
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.footer-link {
  color: white;
  text-decoration: underline;
  font-style: bold;
  padding: 10px;
  margin-top: 50px;
}

.footer-link:first-child {
  position: absolute;
  left: 10px;
  bottom: 10px;
}

.footer-link:nth-child(2) {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 50px;
}