body {
  color: black;
  font-family: Verdana;
  background-color: #38b6ff;
  margin: 0;
  padding-top: 40px; /* space for the small top bar */
}

/* Top bar aligned with main container */
#topbar {
  position: fixed;
  top: 0;
  left: 5%;        /* aligns with your main container */
  width: 90%;      /* same width as main container */
  height: 40px;    /* one-line tall */
  background-color: #feff38;
  border-radius: 16px;

  display: flex;
  align-items: center;   /* vertical centering */
  justify-content: flex-start; /* left align */

  padding-left: 12px;    /* small padding so the image/text breathe */
  font-size: 28px;       /* your desired size */
  line-height: 32px;
  font-weight: bold;

  z-index: 9999;
  
  margin-top: 20px;
}

#topbar p {
  margin: 0;
  display: flex;
  align-items: center; /* keeps text + image aligned */
  gap: 8px;            /* space between text and image */
}
