

  body {
    background-color: #120024; /* Your deep purple */
    margin: 0;
    padding: 0;
    min-height: 100vh; /* This ensures the color covers the whole screen */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Gemini-hero {
    /* 1. Layout & Centering (The Flexbox) */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;

    /* 2. Sizing & Spacing */
    width: 100%;
    max-width: 900px;
    height: 250px; 
    margin: 20px auto; /* Centers the banner on the page */
    padding: 20px;     /* Keeps text from hitting the edges */

    /* 3. Aesthetics */
    background-image: url('images/libraryheader.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    border: 2px solid #ff00ff; 
    box-shadow: 0 0 20px #BF00FF;
}

.main-content {
    max-width: 850px; /* Slightly narrower than the banner for a nice aesthetic */
    margin: 0 auto;   /* Centers the content */
    padding: 20px;
    color: #d8bfd8;   /* Your Thistle text color */
}

/* Ensure the headings inside your content are colored correctly */
.main-content h2 {
    color: #9370DB; /* Medium Purple */
    margin-top: 0;  /* Removes extra gap between banner and text */
}

.latin-inscription {
    color: #ee82ee !important; /* Violet */
    font-style: italic;
    margin-top: 10px;
    letter-spacing: 1px;
}

.library-note {
   max-width: 600px;
  padding: 30px;
  border: 2px solid #BF00FF;
  box-shadow: 0 0 15px #BF00FF;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  margin-top: 30px;
}

.library-note {
  font-style: italic;
  font-size: 20px; /* VT323 looks better a bit larger */
  color: #ee82ee;
  text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
  line-height: 1.6;
}