body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #121212, #1e1e1e);
  color: #f0f0f0;
}

header {
  background: url('images/background-text.png') no-repeat center center;
  background-size: contain;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
}

nav h1 {
  font-size: 2.5rem;
  margin: 0;
  color: #00ffcc;
}

nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
  font-weight: bold;
}

.hero h2 {
  font-size: 2.25rem;
  margin-top: 2rem;
  color: #ffffff;
}

.hero p {
  font-size: 1.25rem;
  color: #cccccc;
}

.cta {
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #00ffcc;
  color: #121212;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
}

.features {
  display: flex;
  justify-content: space-around;
  padding: 2rem;
  background-color: #1e1e1e;
}

.feature {
  text-align: center;
  max-width: 300px;
}

.feature img {
  width: 100%;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #000000;
  color: #999999;
}
