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

body {
  font-family: 'Courier New', Courier, monospace;
  background-color: #f4f4f4;
  color: #333;
  min-height: 100vh;
}

/* Header */
header {
  background-color: #222;
  color: #fff;
  padding: 20px;
  text-align: center;
}

/* Projects Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}

/* Project Card */
.project-card {
  background: white;
  border: 2px solid #ccc;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
}

.project-card h2 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.project-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.project-buttons a {
  text-decoration: none;
  background-color: #222;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s;
}

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