
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0a0a1a;
  color: #ffffff;
}

header {
  background: #0a0a1a;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3a0ca3;
}

header h1 {
  font-family: 'Orbitron', sans-serif;
  color: #ffffff;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #ffffff;
}

#hero {
  background: linear-gradient(135deg, #3a0ca3, #7209b7);
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#hero h2 {
  font-size: 3rem;
  color: #ffffff;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px #f72585;
}

#hero button {
  background: #f72585;
  color: #ffffff;
  border: none;
  padding: 15px 30px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 20px;
}

#team {
  display: flex;
  padding: 60px;
  background-color: #0a0a1a;
}

.founder-image img {
  border-radius: 10px;
  max-width: 90%;
}

.founder-text {
  padding-left: 40px;
}

.founder-text h3 {
  color: #f72585;
  font-family: 'Orbitron', sans-serif;
}

#nia {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.nia-bubble {
  background-color: rgba(10, 10, 26, 0.9);
  border: 1px solid #f72585;
  border-radius: 12px;
  padding: 15px;
  max-width: 250px;
  color: #ffffff;
  font-size: 0.9rem;
}
