.contributors {
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
}
.contributors.dark-theme {
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
}

.contributors h1 {
  font: 5.5vw/1 Permanent Marker;
  text-align: center;

  font-size: 2.5rem;
  margin-bottom: 4%;
}

.contributors h1:hover {
  text-decoration: underline;
}

#contributor {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.contributor-card {
  width: 65px;
  height: 65px;
  clip-path: circle(50%);
  margin-top: 20px;
  margin: 5px;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.contributor-card:hover {
  transform: scale(1.35);
  opacity: 0.85;
}

.contributor-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contributor-card:nth-child(4n + 1),
.contributor-card:nth-child(4n + 3) {
  margin-top: -4px;
}
