html {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  font-family: 'Poppins', sans-serif;
  background: rgb(243, 230, 115) 100%;
}

h1 {
  margin-top: 80px;
  text-align: center;
  color: #252525;
}

.card-container {
  margin: 80px auto;
  height: 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 250px;
  padding: 10px;
  text-align: center;
  transition: transform 0.2s;
}

.cardV img {
  max-height: 184px;
  object-fit: cover;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.card h3 {
  margin: 15px 0 10px;
}

.card p {
  font-size: 14px;
  color: #252525;
}

.card button {
  margin-top: 10px;
  padding: 10px 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.card button:hover {
  background: #0056b3;
}
