body {
    margin: 0;
    padding: 0;
    background-image: url("https://cdn.mos.cms.futurecdn.net/pUZjxthy6xBcNwieNrdGX7.jpg");
    background-attachment:fixed; 
    background-repeat: repeat; 
    font-family: "Roboto", sans-serif; 
    color: #cdb4db;
}
    

    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;
}

#stage p {
  line-height: 1.6; /* better spacing */
  margin: 0 0 1em 0; /* optional: space between paragraphs */
}

.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 #ff00ff;
}

#header h1 {
    margin: 0;
    color: white;
    /*  */ 
    font-family: "VT323", monospace;
}



.tagline {
    font-size: 20px;
}

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

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

#nav {
    float: left;
    width: 160px;
    padding: 10px;
    font-family: VT323, sans-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: 10px;
}

.section {
    /* border: 2px solid #a2d2ff; */
    padding: 8px;
    margin-bottom: 12px;
    background-color: #03002e;
}

.section h2 {
    font-family: "VT323", monospace;
    color: #bde0fe;
    margin-top: 0;
    font-size:30px; 
}

.section h1{ 
      font-family: "VT323", monospace;
      color: #ffafcc; 
  
} 

.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; }
}

