/* Estilos generales */
body {
    background-color: #e8f5e9;
    font-family: Arial, sans-serif;
    color: #2e7d32;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Títulos */
h1 {
    font-size: 32px;
    color: #1b5e20;
    font-family: 'Trebuchet MS', sans-serif;
    margin-top: 20px;
}

h2 {
    color: #388e3c;
    font-size: 24px;
}

/* Párrafos */
p {
    font-size: 18px;
    margin: 15px 40px;
}

/* Imagen */
.imagen {
    width: 300px;
    height: auto;
    border: 3px solid #4caf50;
    border-radius: 15px;
    margin: 20px 0;
}

/* Tabla */
table {
    margin: 0 auto;
    border-collapse: collapse;
    width: 80%;
}

th, td {
    border: 2px solid #81c784;
    padding: 10px;
    text-align: center;
}

thead {
    background-color: #a5d6a7;
    color: #1b5e20;
    font-weight: bold;
}

tbody tr:nth-child(even) {
    background-color: #c8e6c9;
}

/* Lista */
ul {
    list-style-type: square;
    font-style: italic;
    color: #2e7d32;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
}

/* Formulario */
form {
    background-color: #dcedc8;
    width: 300px;
    margin: 20px auto;
    padding: 15px;
    border-radius: 10px;
}



button {
    background-color: #4caf50;
    color: white;
    cursor: pointer;
}

/* Footer */
footer {
    background-color: #1b5e20;
    color: white;
    padding: 10px;
    margin-top: 30px;
}
