body {
  font-family: Georgia;
  text-align: center;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0;
  margin: 30px auto 30px auto;
  padding-left: 5%;
  padding-right: 5%;
  box-shadow: 0px 25px 5px -15px rgba(0, 0, 0, 0.5);
  background: #fff;
  border-radius: 30px;
  z-index: 100;
}

ul.navbar-menu {
  padding: 10px 5px 10px 5px;
  font-size: clamp(10px, 2vw, 24px);
  text-align: center;
  min-width: 65%;
}

ul.navbar-menu li {
  display: inline;
  margin-left: 7%;
}

ul.navbar-menu li a {
  text-decoration: none;
  color: #000;
}

ul.navbar-menu li a:hover {
  text-decoration: underline;
  text-shadow: 2px 2px 4px #888888;
}

.navbar > img {
  display: block;
  max-width: 12%;
  height: auto;
  border-radius: 10%;
  border: solid 1px #999999;
}

h1 {
  font-size: 3vw;
  font-style: italic;
}

/* Container for the image and text */
.img-container {
  position: relative;
  max-width: 60%; /* Limit the max width */
  margin: auto; /* Center it */
}

/* Make sure the image scales responsively */
.img-container img {
  width: 100%; /* Image takes 100% of the container's width */
  height: auto; /* Maintain the aspect ratio */
  border-radius: 10%;
}

.text-overlay {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-family: Georgia;
  font-style: italic;
  font-size: 3vw;
  font-weight: bold;
  width: 100%;
}
