<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* The navigation bar */
.fixed-nav-bar {
    overflow: hidden;
    background-color: #FFFFFF;   /* might have to change other things */
    position: fixed; /* Set the navbar to fixed position */
    top: 0; /* Position the navbar at the top of the page */
    width: 100%; /* Full width */
  }

/* Main content */
.main-content {
  margin-top: 100px; /* Add a top margin to avoid content overlay */
}

body {
	color: #000000;
	background-color: #FFFFFF;   /* might have to change other things */
}


a {	text-decoration: underline; }
/*
a:link { color:#232323 }
a:visited { color:#232323 }
a:hover { color:#FFFFFF ; font-weight: bold }
*/

blankSpace { color:#FFFFFF }   /* same color as body background */

</pre></body></html>