body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0f7fa;
}

header {
    background-color: #00796b;
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}

/* Estilos generales para las secciones */
section {
    margin: 20px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
}

.contenido {
    border: 2px solid #ccc;
    padding: 15px;
    margin-bottom: 10px;
}

.imagen {
    text-align: center;
    margin-top: 15px;
}

.imagen img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Estilos para la página principal */
.inicio h2 {
    font-family: "Brush Script MT", cursive;
    color: red;
    font-size: 28px;
}

.inicio p {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 20px;
}

/* Estilos para los temas y subtemas */
.que-es h2 {
    font-family: "Brush Script MT", cursive;
    color: red;
    font-size: 24px;
}

.que-es p, .que-es ul {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 18px;
}

.importancia h2 {
    font-family: "Comic Sans MS", cursive;
    color: orange;
    font-size: 24px;
}

.importancia p, .importancia ul {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 18px;
}

.organismos h2 {
    font-family: "Lucida Handwriting", cursive;
    color: lightgreen;
    font-size: 24px;
}

.organismos p, .organismos ul {
    font-family: Arial, sans-serif;
    color: black;
    font-size: 18px;
}

footer {
    text-align: center;
    padding: 10px;
    background-color: #004d40;
    color: white;
}