@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap");

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(to bottom, #000000, lightgray);
  text-align: center;
}

.container {
  margin: 10px auto;
  width: 80%;
  max-width: 600px;
}

h3 {
    font-size: 2rem;
    background: linear-gradient(to bottom, black, white);
    color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 10px;
}

.custom-card {
  width: 100%;
  height: 150px;
  cursor: pointer;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.custom-matched {
  opacity: 0.5;
  filter: grayscale(100%);
}

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


