/* Base Retro Style */
html {
  background: radial-gradient(#0d0d1a 0%, #000000 3000%);
}
body {
  font-family: "Orbitron", "Courier New", Courier, monospace;
  color: #00ff00;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: unset !important;
}

/* Animated starfield background */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: transparent
    url("https://www.transparenttextures.com/patterns/stardust.png") repeat;
  animation: starfield 60s linear infinite;
  opacity: 0.2;
  z-index: -2;
}

@keyframes starfield {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -1000px 1000px;
  }
}

.container {
  width: 80%;
  margin: 60px auto;
  margin-top: 50px;
  border: 2px solid #00ff00;
  padding: 20px;
}

h1,
h2,
h3 {
  color: #ffff66;
  margin-top: 0;
}

a {
  color: cyan;
  text-decoration: none;
}

a:hover {
  color: #0ff;
}

.section {
  margin-bottom: 20px;
  border-bottom: 1px dashed #00ff00;
  padding-bottom: 10px;
}

.contact-info,
.footer {
  text-align: center;
}

em {
  color: #ccc;
}
