/* --- Estilos generales y de tipografía --- */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    padding-bottom: 70px;
}

h1 {
    text-align: center;
    color: #444;
}

/* --- Estilos del menú --- */
header {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu {
    text-align: center;
}

.menu-boton {
    display: none;
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.menu-lista {
    list-style-type: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-lista li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu-lista li a:hover {
    background-color: #575757;
}

/* Media query para dispositivos móviles */
@media screen and (max-width: 600px) {
    .menu-boton {
        display: block;
    }

    .menu-lista {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
}

/* ----------------------------------------------- */
/* Estilo del contenedor principal para todas las páginas */
/* ----------------------------------------------- */
main {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}