body{
    background-color: #ececf7;
}

header {
  height: 150px;
  padding-top: 7px;
  font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
}

footer {
    height: 150px;
}

.titulo {
    color: #088b11;
}

.animal-carta {
  background: linear-gradient(135deg, #f4dc06, #088b11); 
  border: 3px solid #060606;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 10px;
  transition: transform 0.3s;
}

.animal-carta:hover {
  transform: scale(1.05);
}

.animal-img {
  height: 300px;
  object-fit: contain; 
  padding: 10px;
  border: 3px solid #060606;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.animal-descripcion {
  text-align: center;
  font-style: italic;
  font-size: 21px;
  margin-bottom: 3px;
  color: #555;
}

.card-body{
   background-color: #6ff568;
   margin-top: 3px;
   margin: 3px;
   border-bottom-left-radius: 15px;
   border-bottom-right-radius: 15px;
}

.titulo-carta {
  color: #343535; 
  text-align: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.ver-btn {
  display: block;  
  text-align: center;  
  background-color: #1c8e05;
  border: none;
  color: white;
  font-weight: bold;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.5s ease;
}

.ver-btn:hover {
  background-color: #1a1a46;
  color: #6ff568; 
}


