body {
    margin: 0;
    padding: 0;
    /* background-image: url("https://images.unsplash.com/photo-1554050857-c84a8abdb5e2?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YmxhY2slMjBzdGFyfGVufDB8fDB8fHww"); 
    background-attachment:fixed; 
    background-repeat: repeat; */
    background-color: #eee7d7; 
    font-family: "Montserrat", sans-serif; 
    color: black;
}
    

    pre, code {
  text-align: left;       /* aligns text to the left */
  margin: 0;              /* removes any external spacing */
  padding: 0;             /* removes internal spacing */
  font-family: "Roboto Mono", monospace;
  font-size: 18px;        /* adjust as needed */
  background: transparent; /* optional for transparent code blocks */
  white-space: pre;       /* ensures formatting is preserved */
}
      
  .hljs {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  text-align: left;
}



/* =========================================================
   PAGE WRAPPER
   ========================================================= */

#stage {
    position: relative;
    width: 1200px;       /* wider than page */
    margin: 0 auto;
}

#page {
    width: 760px;
    margin: 10px auto;
    /* border: 5px ridge #D7E5F0; */ 
    position:relative; 
    font-size:20px;
    line-height:1.5;
}

.outside {
    position: absolute;
    width: 200px; 
    top: 200px; 
}

.outside.left {
    float: left;
    left: -10px;
}

.outside.right {
    float: right;
    right: -10px; 
}


/* =========================================================
   HEADER
   ========================================================= */

#header {
    text-align: center;
    padding: 20px;
    border-bottom: 3px double black;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: 760px;  /* match #page width */
    z-index: 1000;
    background-color: #eee7d7;
}

#header h1 {
    margin: 0;
    color: black;
    /*  */ 
    font-family: "Times New Roman", serif;
}



.tagline {
    font-size: 20px;
}

.blink {
    color: pink;
    animation: blink 1s steps(2, start) infinite;
}

/* =========================================================
   NAVIGATION
   ========================================================= */

#nav {
    float: left;
    width: 160px;
    padding: 10px;
    font-family: "Times New Roman", serif;
    font-size: 30px;
    border-right: 2px dashed pink;
}

#nav a {
    color: #ffafcc;
    text-decoration: none;
}

#nav a:hover {
    background-color: black;
    color: magenta;
}

/* =========================================================
   CONTENT
   ========================================================= */

#content {
    margin-left: 180px;
    padding: 0px;
}

.section {
    /* border: 2px solid #a2d2ff; */
    padding: 0px;
    margin-bottom: 12px;
}

.section h2 {
    font-family: "Montserrat", monospace;
    font-weight:normal;
    color: grey;
    margin-top: 0;
    font-size:25px; 
}

.section h1{ 
      font-family: "Playfair Display", monospace;
      color: black; 
      font-style: italic; 
      font-size:50px; 
      margin-bottom:0px; 
} 

.section.narrow {
    width: 220px;
    float: left;
    margin-right: 10px;
}

.section.wide {
    width: 320px;
    float: left;
}
.section.half {
    width: 250px;
    float: left;
    margin-right: 10px
}

#content a {
    color: #ffafcc;
    text-decoration: none;
}

#content a:hover {
    background-color: black;
    color: magenta;
}


/* =========================================================
   IMAGES
   ========================================================= */

.divider {
    width: 100%;
    margin: 10px 0;
}

/* =========================================================
   FOOTER
   ========================================================= */

#footer {
    clear: both;
    text-align: center;
    font-size: 20px;
    border-top: 3px double #ff00ff;
    padding: 10px;  
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes blink {
    to { visibility: hidden; }
}

