html, body {
    height: 100%;
    margin: 0;
  }

  body {
      display: flex;
      flex-direction: column;
      min-height: 150vh;
  }

.wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

main {
    flex: 1; /* This makes the main content take up the remaining space */
}

footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

body > div.wrapper > footer > a > div {
    border-radius: 1vh;
    color: black;
}

#navbarText > span > ul > li > div > a:hover {
    background-color: #2a2f33;
}
#navbarText > ul > li:hover {
    background-color: #2a2f33;
}

body > div.wrapper > footer > h2 > a {
    color: whitesmoke;
}

body > div.wrapper > footer > h5:nth-child(3) > a {
    color: whitesmoke;
}

.image-container {
  width: 100%;
  max-width: 400px; /* Optional: control size */
  height: auto;
  margin: 0 auto; /* center horizontally */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
