/* General */
body {
    font-family: 'Georgia', serif;
    background-color: #000000; /* Fondo negro */
    color: #e6e6e6; /* Texto claro para buena legibilidad */
    margin: 0;
    padding: 0;
    line-height: 1.8;
    background-image: url('path/to/dark-forest.jpg'); /* Imagen de fondo opcional */
    background-size: cover;
    background-attachment: fixed;
}

/* Header */
body>header {
    background-color: #2b0000; /* Rojo oscuro */
    color: #ffffff;
    text-align: center;
    padding: 30px 0;
    font-size: 2.5em;
    font-family: 'Papyrus', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

body>header h1 {
    margin: 0;
    font-size: 3em;
    letter-spacing: 3px;
    text-shadow: 2px 2px 5px #800000; /* Sombra roja para dramatismo */
}

/* Navigation */
nav {
    text-align: center;
    margin: 20px 0;
    background-color: #2b0000; /* Rojo oscuro */
    padding: 10px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

nav a {
    color: #e6e6e6; /* Blanco roto */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    margin: 0 15px;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav a:hover {
    background-color: #800000; /* Rojo carmesí */
    color: #ffffff;
}

/* Sections */
.section {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background-color: rgba(43, 0, 0, 0.85); /* Fondo rojo oscuro translúcido */
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
    color: #e6e6e6; /* Texto claro */
}

.section h2 {
    color: #ff4d4d; /* Rojo vibrante */
    font-size: 2em;
    text-align: center;
    border-bottom: 2px solid #800000; /* Línea roja */
    padding-bottom: 10px;
}

.section p {
    font-size: 1.2em;
    text-indent: 2em;
    margin: 20px 0;
    line-height: 1.8;
}

/* Images */
.section img {
    display: block;
    margin: 20px auto;
    max-width: 60%;
    border: 4px solid #800000; /* Marco rojo */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    width: 600px;
}

/* Footer */
footer {
    background-color: #2b0000; /* Rojo oscuro */
    color: #e6e6e6;
    text-align: center;
    padding: 15px;
    font-size: 1em;
    border-top: 2px solid #800000; /* Línea decorativa */
}

footer p {
    margin: 5px 0;
    font-style: italic;
}

main>figure { 
    text-align: center; 
    width: 60%;
    margin: auto;
}

main figure>img {
    width: 90%;
    height: auto;
}