            body {
                margin: 0;
                font-family: sans-serif;
                display: flex;
                flex-direction: column;
                height: 100vh;
            }
h1, h2, h3, h4, h5, h6 {
    color: #0061ff;
}

            #banner {
                background: #e8d1ff;
                color: #fff;
            }
img {
  max-width: 60%;
  height: auto;
  display: block;
  margin: 0 auto;
}

            
            #container {
                display: flex;
                flex: 1;
                overflow: hidden;
                border-bottom: double 2px #e8d1ff;
            }

            #menu {
                width: 25%;
                background: rgba(178, 247, 254, 0);
                padding: 15px;
                box-sizing: border-box;
                border-right: double 5px #e8d1ff; 
            }

            #menu a {
                display: block;
                margin-bottom: 10px;
                color: #000;
                text-decoration: underline;
                text-decoration-style: wavy;
                text-decoration-color: #ea7bc6;
            }

            #menu a:focus {
                color: #0061ff;
                text-emphasis-style: triangle;
            }

            #contentFrame {
                flex: 1;
                margin: 2%;
                padding: 2%;
                border: dashed 2px #0061ff;
                border-radius: 10px;
                
            }
            #hidden-front {
                background-color: aliceblue;
                color: #ffffff;
            }
 ul.bullets {
  list-style: none;
}

ul.bullets li::before {
  /* scissors */
  content: "\2700" " ";
}
summary {
  list-style: none;
  cursor: pointer;
}
summary::-webkit-details-marker {
  display: none;
}

/* Custom arrow */
summary::before {
  content: "\25CD";
  display: inline-block;
  transition: transform 0.25s ease;
  font-weight: bold;
  margin-right: 4px;
  color: #333;
}

/* Rotate arrow when open */
details[open] summary::before {
  transform: rotate(90deg);
}
/* Quote block */
.quote {
  border-left: 6px solid #6c63ff;
  background: #fff;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 0.5rem;
}

.quote h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #6c63ff;
}

.quote p {
  margin: 0.5rem 0 0;
  font-style: italic;
  line-height: 1.5;
}

.quote footer {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #666;
  text-align: right;
}
footer {
text-align: center;
padding: 15px 0;
font-size: 0.9em;
color: #555;
}