/* index.css */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  overflow: hidden;
  overflow-y: auto;
}

#stars-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  color: white;
  background: black;
  z-index: 1;
}

header {
    height: 72px;
    z-index: 1;
}

.hero {
  position: relative;
  margin: 0 10vw;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  text-align: left;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero {
    margin: 0 5vw;
  }
}

.hero-text h1 {
font-size: 3rem;
margin: 0;
}

.hero-text p {
font-size: 1.2rem;
margin: 10px 0 20px;
}

.nav-links {
  margin-top: 30px;
}

.nav-links a {
margin: 0 10px;
padding: 10px 20px;
color: black;
border: 1px solid black;
border-radius: 5px;
text-decoration: none;
transition: background 0.3s;
}

.nav-links a:hover {
background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 600px) {
  .nav-links {
    display: flex;
    flex-direction: column;
    margin: 10px;
  }

  .nav-links a {
    margin: 5px 0;
  }
}

.back-home {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid white;
  border-radius: 5px;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
  z-index: 1000;
}

@media (max-width: 800px) {
  .back-home {
    display: none;
  }
}
  
.back-home:hover {
  background: rgba(255, 255, 255, 0.1);
}