body,
html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

header,
footer {
  background-color: #03919b;
  color: white;
  text-align: center;
  padding: 5px;
}

.content {
  display: flex;
}

.sidebar {
  width: 200px; /* Adjust as needed */
  background-color: #f4f4f4;
  padding: 20px;
  box-sizing: border-box;
}

.sidebar a {
  display: block;
  padding: 10px;
  color: black;
  text-decoration: none;
}

.sidebar a:hover {
  background-color: #ddd;
}

.main-content {
  flex-grow: 1;
  display: flex;
  align-items: center; /* Center the image vertically */
  justify-content: center; /* Center the image horizontally */
  padding: 20px;
  box-sizing: border-box;
}

.main-content img {
  max-width: 100%;
  max-height: 100vh; /* Adjust the image height to viewport */
  object-fit: cover; /* Adjust the image to cover the content area */
}

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;
}
