<style>
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Impact', 'Arial Black', sans-serif;
    background-image: url('https://images.unsplash.com/photo-1578662996442-48f60103fc96?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    color: #d60606;
    line-height: 1.6;
}


body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

header {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

h1 {
    text-align: center;
    font-size: 3.5em;
    color: #d60606;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    letter-spacing: 5px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
}

nav {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 0;
    text-align: center;
    border-top: 2px solid #d60606;
    border-bottom: 2px solid #d60606;
}

nav a {
    color: #d60606;
    text-decoration: none;
    padding: 10px 25px;
    margin: 0 10px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-family: 'Arial Black', Impact, sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

nav a:hover {
    background-color: #ffda0a;
    transform: translateY(-2px);
}

.historia-container {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
}

article {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    border: 3px solid #d60606;
}

h2 {
    font-size: 3em;
    color: #d60606;
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

h3 {
    font-size: 2em;
    color: #d60606;
    margin: 30px 0 20px 0;
    font-family: 'Impact', 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contenido p {
    font-size: 1.2em;
    line-height: 1.8;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    margin-bottom: 20px;
}

.timeline {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.timeline li {
    background-color: rgba(255, 107, 107, 0.1);
    border-left: 5px solid #d60606;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.timeline li:hover {
    background-color: rgba(255, 107, 107, 0.2);
    transform: translateX(10px);
}

.timeline strong {
    display: block;
    font-size: 1.4em;
    color: #d60606;
    margin-bottom: 10px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.timeline p {
    font-size: 1.1em;
    color: #e0e0e0;
    font-family: 'Courier New', monospace;
    margin: 0;
}

.imagen-epoca {
    text-align: center;
    margin: 40px 0;
}

.imagen-epoca img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    border: 3px solid #d60606;
}

.imagen-epoca figcaption {
    margin-top: 15px;
    font-style: italic;
    color: #b0b0b0;
    font-size: 1.1em;
    font-family: 'Courier New', monospace;
}

footer {
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-top: 2px solid #d60606;
}

footer p {
    color: #b0b0b0;
    font-family: 'Courier New', monospace;
}
</style>
