body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 2rem;
}

h1 {
  text-align: center;
  color: #333;
}

.project-list {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.project-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.project-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.project-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.project-buttons a {
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: white;
  background-color: #007bff;
  transition: background 0.2s ease;
}

.project-buttons a:hover {
  background-color: #0056b3;
}
