* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}

body {
  line-height: 1.6;
}

/* Navbar */
header {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: #333;
  color: white;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
}
nav a:hover {
    color: yellow;
}

/* Hero */
.hero {
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right,#4facfe, #00f2fe);
  color: white;
}

.hero button {
  margin-top: 10px;
  padding: 10px 20px;
  border: none;
  background: #333;
  color: white;
  cursor: pointer;
}
button:hover {
    background: black;
    color: white;
     
}

/* Sections */
section {
  padding: 40px;
  text-align: center;
}

.project {
  margin: 15px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0.1);
  transition: 0.3s;
}
.project:hover {
    transform: scale(1.05);
}
}
/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero  {
    text-align: center;
    padding: 20px;
  }
  nav {
    margin-top: 10px;
  }
}