/* Tipografía tipo máquina de escribir */
body {
    font-family: "Courier New", Courier, monospace;
    background-color: #e17d7d; /* Bordó claro rosado */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #000; /* Mantenemos el texto negro como pediste */
}

/* Encabezado principal */
h1 {
    font-size: 2.4em;
    margin: 1em 0 0.5em 0;
    text-align: center;
}

/* Subtítulos */
h2 {
    font-size: 1.8em;
    margin: 1.5em 0 0.5em 0;
    text-align: left;
}

h3 {
    font-size: 1.4em;
    margin: 1em 0 0.5em 0;
    color: #222;
}

/* Párrafos */
p {
    font-size: 1em;
    margin: 0.8em 0;
}

/* Listas */
ul {
    padding-left: 1em;
    list-style: none; /* Elimina los puntos negros */
}

li {
    font-size: 1em;
    margin-bottom: 0.4em;
}

/* Enlaces */
a {
    color: white;
    text-decoration: underline;
}

/* Header */
header {
    background-color: #5a0c16; /* Bordó oscuro */
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1em;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

nav li {
    display: inline-block;
}

nav a {
    background-color: #7a1e27; /* Bordó medio */
    color: white;
    padding: 0.5em 1em;
    border-radius: 4px;
    text-decoration: none;
}

/* Secciones */
section {
    padding: 1em;
}

/* Footer */
footer {
    background-color: #7a1e27; /* Bordó medio */
    padding: 1em;
    text-align: center;
    font-size: 0.9em;
    color: white;
}