* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lexend Deca', sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  width: 90%;
  background-color: #c9f7c3;
  border-radius: 100rem;
  border: 3px solid #333;
  font-family: 'Lexend Deca', sans-serif;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
}

.navbar .logo {
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 1;
}

.navbar .nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  z-index: 1;
}

.navbar .nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.navbar .nav-links a:hover {
  color: #34c759;
}

.hero {   
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, #d9fdd3, white);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: #333;
}

.hero p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

.email-form {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.email-form input {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
}

.email-form input::placeholder {
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 400;
}

.email-form button {
  padding: 0.8rem 1.5rem;
  background-color: #34c759;
  border: none;
  border-radius: 8px;
  color: white;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s ease;
}

.email-form button:hover {
  background-color: #28a745;
}

.footer {
  text-align: center;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 400;
  border-top: 3px solid #ddd;
}


