body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 15px 0;
}

footer {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 10px 0;
}

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;
}

.fullscreen-image {
  width: 100vw; /* Viewport width */
  height: calc(
    100vh - 2px
  ); /* 100% of the viewport height minus the header and footer height */
  object-fit: fill;
}
