/* General layout */
body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  height: 100%;
}

main {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

header {
  background-color: #fef5e8;
  min-height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

article {
  flex: 1;
}

article iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

footer {
  background-color: #610709;
  color: white;
  min-height: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: white;
  margin-top: 0.5rem;
  text-decoration: none;
}

.footer-privacy {
  display: flex;
  align-items: center;
}

.privacy-icon {
  width: 12px;
  height: 12px;
  margin-right: 0.5rem;
}

.footer-version {
  font-style: italic;
  margin-top: 0.5rem;
}
