#contributions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2rem 0rem 2rem 0rem;
}
.card {
  width: 300px;
  height: auto;
  background-color: #f1f1f1;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin: 20px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s;
  display: inline-block;
}

.card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.card .github-button {
  display: inline-block;
  padding: 8px 15px;
  background-color: black;
  color: white;
  border: none;
  font-size: 10px;
  border-radius: 20px;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
}

.card .github-button:hover {
  background-color: #333;
}

.card:hover {
  transform: scale(1.05);
}

/* Styles for the header */
.header {
  text-align: center;
  padding: 40px 0;
  background-color: #f9f9f9;
}

.header h1 {
  color: #333;
}

.header p {
  color: #666;
}

/* Styles for the footer */
.footer {
  text-align: center;
  padding: 20px 0;
  background-color: #f9f9f9;
}

.footer p {
  color: #666;
}
