/* Reset & font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: #0b0c28;
  color: #fff;
  display: flex;
  flex-direction: column;
}

canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.content {
  position: relative;
  z-index: 10;
  max-width: 600px;
  margin: auto;
  text-align: center;
  padding: 40px 20px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

p {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact a {
  color: #ddd; /* neutral soft color */
  text-decoration: none;
  font-weight: 600;
}

.contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  font-size: 0.9rem;
  color: #aaa;
  z-index: 10;
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  p { font-size: 1rem; }
  .astronaut { width: 60px; }
}
