.hero-banner {
  padding-top: 60px; /* makes space for navbar */

  background-image: url("Images/titlepageimage.png");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  color: #fff;
}

.overlay-text {
  background-image: url("Images/moonlight-and-bloodlines.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 600px; /* or however tall you want it */
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-family: cursive;
  color: #fff;
}
			/*Navigation Bar*/
.navbar {
  background-color: #222;
  padding: 10px 20px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 200px;
}

.navbar li {
  display: inline;
}

.navbar a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 8px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.navbar a:hover {
  background-color: #555;
}