body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

#especie, #cientifico, #familia, #titulo {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 15px;
    margin: 10px auto;
    background: #00796b;
    color: white;
    border-radius: 10px;
    width: 80%;
}

#lista {
    max-width: 900px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

#lista ul {
    list-style-type: none;
    padding: 0;
}

#lista li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

#lista li:last-child {
    border-bottom: none;
}

#lista a {
    text-decoration: none;
    color: #00796b;
    font-size: 18px;
    transition: color 0.3s, background 0.3s;
}

#lista a:hover {
    color: white;
    background: #00796b;
    padding: 5px;
    border-radius: 5px;
}
.nombre-cientifico {
    font-style: italic;
}