@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient( #1b2734 0%, #090a0f 100%);
  min-height: 100vh;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #0ff;
  margin-top: 10px;
  text-shadow: 0 0 15px #0ff, 0 0 25px #00f0ff;
}

h2 {
  margin: 0;
  text-align: center;
  color: #ff00ff;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  font-weight: 500;
  box-shadow: 0 0 15px #ff00ff;
}

span {
  color: #ff5e00;
  font-weight: bold;
  text-shadow: 0 0 10px #ff5e00, 0 0 20px #ff4500;
}

#pets {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
}
.card {
  width: 350px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 20px;
  margin: 10px;
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 0 25px #0ff, 0 0 40px #00f0ff;
}

.card img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}

.card img:hover {
  transform: scale(1.05);
  filter: brightness(1.2) saturate(1.3);
}

.card h3 {
  margin-top: 12px;
  color: #0ff;
  font-size: 1.5rem;
  text-shadow: 0 0 8px #00f0ff;
}

.card p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
  text-align: justify;
}

h4 {
  color: #0ff;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-left: 20px;
  text-shadow: 0 0 10px #00f0ff, 0 0 20px #00f0ff;
}

@media(max-width:375px){
  #pets{
    flex-wrap: wrap;
  }
}
