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

body {
  font-family: "Poppins", sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

header {
  text-align: center;
  padding: 80px 20px 40px;
  background: linear-gradient(135deg, #6e8efb, #a777e3);
  color: white;
}

header h1 span {
  color: #fff700;
}

.subtitle {
  font-size: 1.1rem;
  margin-top: 10px;
  opacity: 0.9;
}

nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  background: #fff;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

nav a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #6e8efb;
}

section {
  padding: 50px 10%;
  max-width: 900px;
  margin: auto;
}

section h2 {
  margin-bottom: 20px;
  color: #6e8efb;
}

#skills ul {
  list-style: none;
}

#skills li {
  padding: 8px 0;
}

.project {
  background: #fafafa;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.project h3 {
  color: #333;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  background: #6e8efb;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #a777e3;
}

footer {
  text-align: center;
  background: #6e8efb;
  color: white;
  padding: 20px;
  margin-top: 40px;
}
