body {
  background: linear-gradient(to bottom, #a1c4fd, #c2e9fb); 

}
.navbar {
  background-color: rgba(0, 0, 0, 0.7); 
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.navbar ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  padding: 15px 0;
  display: inline-block;
  transition: color 0.3s;
}
.navbar a:hover {
  color: #ffdd57;
}
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  }

.hero h1 {
  font-size: 80px;
  color: #fff;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  margin-bottom: 20px;
}

.hero-img {
  max-width: 80%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 50px;
  margin-bottom: 20px;
  color: #333;
}

section p {
  font-size: 20px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}
