body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  background-color: #111;
  color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #000;
  padding: 1em 2em;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #00ffe7;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5em;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00ffe7;
}

.hero {
  text-align: center;
  padding: 5em 2em;
}

footer {
  text-align: center;
  padding: 2em;
  background-color: #000;
  font-size: 0.9em;
}
