
body {
  margin: 0;
  background-image: url('https://solario-anomalies.neocities.org/stars.png');
  background-position: center;
  background-repeat:repeat;
  background-attachment: fixed;
}

/* Logo - fixed position at 30% top */
#site-logo {
  position: fixed;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400; /* added px */
  z-index: 1000;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px black;
}

/* Navigation container fixed as well, positioned under logo */
#site-nav {
  position: fixed;
  top: calc(30% + 150px); /* 30% plus approx logo height */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

/* Nav list styles */
#site-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 25px;
}

#site-nav ul li a {
  text-decoration: none;
  color: red;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

#site-nav ul li a:hover {
  background-color: rgba(255, 0, 0, 0.2);
}

