

/* This targets EVERYTHING on the page */
* {
  font-family: "Lucida Sans Typewriter", "Lucida Console", Monaco, monospace, !important;
}

body {
  background-color: black;
  color: crimson;
  font-family: "Lucida Sans Typewriter", "Lucida Console", Monaco, monospace;
  background-image: url("/images/under_construction.png");  
  background-repeat: repeat; 
  background-size: 10em;
} 




/* Sidebar Styles */
.sidebar {
  height: 100%;
  width: 160px;
  position: fixed; /* Keep this as fixed to stay still while scrolling */
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #f1f1f1;
  padding-top: 20px;
  overflow-x: hidden;
}

/* Sidebar links */
.sidebar a {
  padding: 10px;
  text-decoration: none;
  display: block;
  color: black;
}

/* Sidebar images */
.sidebar img {
  width: 80%;
  margin: 10px;
}

/* Bottom section of sidebar */
.sidebar-bottom {
  position: absolute;
  bottom: 20px;
  width: 100%;
  padding-bottom: 10px;
}

.sidebar-bottom a {
  font-size: 0.9em;
  color: #555;
}

/* Main Content Area */
.main-content {
  margin-left: 160px; /* Pushes text to the right so sidebar doesn't cover it */
  padding: 20px;
}