.puppies-index-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.puppy-box {
  background-color: #fff;
  border: 2px solid #6f5436;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 8px 10px rgba(80, 30, 20, 0.5);
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.puppy-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
}

.puppy-box h5 {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: bold;
}

.puppy-box p {
  margin: 4px 0;
  font-size: 0.95rem;
}

