body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0b0f2a;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: black;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  color: white;
  text-decoration: none;
}

.hero img {
  width: 100%;
  height: auto;
}

.intro {
  text-align: center;
  padding: 40px;
}

/* Landing Page */
.landing {
  background: url("images/kukaman.jpg") no-repeat center center/cover;
  height: 100vh;
}

.overlay {
  background: rgba(0,0,0,0.6);
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

button {
  padding: 10px 20px;
  font-size: 18px;
  cursor: pointer;
}