/* ESTILOS GENERALES DEL IMPERIO */
body {
    background-color: #1a1a1a;
    color: #f4f4f4;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* MENÚ SUPERIOR */
header {
    background-color: #000;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #e67e22; /* Línea naranja */
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #fff;
}

nav ul {
    list-style: none; /* Quita los puntos feos */
    margin: 0;
    padding: 0;
    display: flex; /* Pone los enlaces en fila horizontal */
}

nav li {
    margin-left: 20px;
}

nav a {
    color: #fff;
    font-weight: bold;
    font-size: 1.1em;
}

nav a:hover {
    color: #e67e22; /* Se pone naranja al pasar el ratón */
}

/* PIE DE PÁGINA */
footer {
    text-align: center;
    padding: 20px;
    background-color: #111;
    color: #888;
    margin-top: 40px;
}