body {
    background-color: #f5ffc9;
    line-height: 1.6;
}

/* Encabezado */
header {
    background-color: #fdb8ff;
    color: white;
    text-align: center;
    padding: 30px 0;
}

/* Navegación */
nav {
    background-color: #ffc6ee;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    display: block;
}


/* Secciones */
section {
    max-width: 900px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}




ul[class^="submenu"] a:hover {
    text-decoration: underline;
}

/* Descripción */
.descripcion {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-left: 10px;
}



/* Footer */
footer {
    background-color: #2d3436;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}