/* Reset */
body, h1, h2, p, a { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Roboto, sans-serif;
  background: #0f0f0f;
  color: #f5f5f5;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
}

/* Header */
.header {
  margin-bottom: 40px;
}
.header h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.tagline {
  font-size: 1.1rem;
  color: #bbb;
}

/* Project Cards */
.projects {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}
.project-card {
  background: #1a1a1a;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.1);
}
.project-card h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.project-card p {
  margin-bottom: 15px;
  color: #ccc;
}

/* Links */
.links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.links a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  background: linear-gradient(45deg, #ff4d4d, #4d79ff);
  color: #fff;
  font-weight: bold;
  transition: transform 0.2s ease;
}
.links a:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  margin-top: 50px;
  font-size: 0.9rem;
  color: #777;
}
