header { background: linear-gradient(135deg, #050a1a, #102040, #1e3a8a); border-bottom: 0.25vw solid #000; border-top: 0.25vw solid #1E3988; }
.headlines { color: #e6c637; }

a:link, a:visited { color: #e6c637; }
a:hover { color: #e07f32; }

main {
background: linear-gradient(-45deg,
  #0d0d0d 0%,      /* deep black */
  #111827 10%,     /* midnight blue */
  #000000 20%,     /* pure black */
  #1a2a40 30%,     /* muted blue accent */
  #1a1a40 40%,     /* subtle purple trace */
  #262626 50%,     /* gray */
  #0d1b2a 60%,     /* deep navy */
  #333333 70%,     /* lighter gray shimmer */
  #1a2a40 80%,     /* muted blue again */
  #000000 90%,     /* pure black */
  #111827 100%     /* midnight blue end */
);
  background-size: 400% 400%;
  animation: drift 20s ease infinite;
}
#stars {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
.star {
  position: absolute;
  width: 1vw; height: 1vw;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes drift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}