footer {
  position: absolute;
  bottom: 0;
  left: 0;
  min-height: 2em;
  width: calc(100% - 2em);  /* Subtract padding from the total width */
  display: flex;
  flex-direction: row; /* Arrange items horizontally */
  align-items: center; /* Vertically align items */
  justify-content: space-between; /* Spread items across the width */
  padding: 0 1em; /* Add spacing around the paragraphs */
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh; /* Set body height to full viewport height */
  margin: 0; /* Remove default body margin */
  font-family: montserrat;
}

header {
  flex: 1; /* Take up remaining space */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

header img {
  max-width: 100%; /* Adjust image size if needed */
  max-height: 100%;
}