#contenido {
    display: flex;
    justify-content: center;
}

.divAnimal {
    background-color: #c8e7c8;
    border-radius: 20px;
    padding: 10px;
    width: 30%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dos columnas iguales *//* Las celdas ocuparán la misma altura */
}

.texto {
    text-align: start;
}


.divImagen{
    display: flex;
    justify-content: center;
}

.divAnimal img {
    width: 100%;
    align-self: stretch; /* Asegura que la imagen se expanda al alto de la celda */
    object-fit: contain;
    border-radius: 20px;
}
