body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding-top: 60px;/* Add a top padding to the body to prevent the banner from overlapping the content */
  background-image: url(backpic1.webp);
}
/* Add the banner styles */
#banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #333;
  display: flex;
  align-items: center;
  padding-left: 20px;
  z-index: 1000;
}
 #banner img {
  height: 50px; /* adjust the height as needed */
  width: auto; /* maintain the aspect ratio */
  vertical-align: middle; /* align the image vertically with the text */
  margin-right: 10px; /* add some space between the icon and the text */
}


#siteName {
  color: white;
  margin: 0;
  text-align: center;
}

header {
  background-color: #333;
  padding: 1rem;
}

header h1 {
  color: #fff;
  margin: 0;
  text-align: center;
}

main {
  padding: 1rem;
}
h1 {
  text-align: center;
}
#pagecontent {
  width: 80%;
  background-color: #221a61;
  color:#fff;
  margin-left: auto;
  margin-right: auto ;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltip span {
  font-weight: bold;
}

.tooltip .tooltiptext {
  visibility: hidden;
  max-width: 250px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
