/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* Body */
body {
  background: linear-gradient(135deg, gold, #764ba2);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* Container */
.container {
  text-align: center;
}

/* Heading */
h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

/* Project Cards */
.projects {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card */
.card {
  background: #fff;
  color: #333;
  padding: 25px;
  width: 220px;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Card Title */
.card h2 {
  margin-bottom: 10px;
}

/* Card Text */
.card p {
  font-size: 0.9rem;
  color: #666;
}