@font-face {                  
  font-family: 'AnalogueOS';
  src: url(https://humantooth.neocities.org/fonts/AnalogueOS-Regular.woff) format('woff');
  font-weight: normal;
  font-style: normal;
}

body {
  background-image: url('folder/Space_parallax.png'); /* Make sure path is correct */
  background-repeat: repeat;
  background-color: #000000;
  color: #f8f8ff;
  margin: 0;
  padding: 0;
  font-family: 'AnalogueOS', Tahoma, "Segoe UI", Geneva, sans-serif;
  letter-spacing: 1px;
}

#wrapper {
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  background-color: rgba(13, 13, 26, 0.95); /* subtle semi-transparent dark */
  border: 3px double #8a2be2;
  box-shadow: 0 0 10px #8a2be2;
}

#sidebar {
  width: 250px;
  background-color: #1e1b2f;
  padding: 15px;
  border-right: 2px dashed #8a2be2;
  font-size: 14px;
}

#sidebar h2 {
  color: #dda0dd;
  font-size: 18px;
  margin-top: 0;
}

#sidebar ul {
  list-style-type: none;
  padding: 0;
}

#sidebar li {
  margin-bottom: 8px;
}

#sidebar a {
  color: #87cefa;
  text-decoration: none;
  font-weight: bold;
}

#main {
  flex: 1;
  padding: 20px;
  background-color: transparent;
}

.scroll-box {
  max-height: 400px;
  overflow-y: auto;
  padding: 0;
  margin-bottom: 2rem;
  background-color: rgba(13, 13, 26, 0.95); /* this is a very dark bluish-black */
  border: 3px double #8a2be2;
  box-shadow: 0 0 15px #8a2be2;
  border-radius: 0 !important; /* force no curves */
  color: #f8f8ff;
}

body::after {
  content: "";
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 100px;
  height: 100px;
  background-image: url('folder/osaker.png'); /* change to your image path */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 9999;
  pointer-events: none; /* so it doesn't block clicks */
}