/* Fuente gótica y estilo general */
body {
    background-color: #000; /* Fondo negro */
    color: #fff;           /* Texto blanco */
    font-family: 'UnifrakturCook', cursive;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Encabezado */
header {
    padding: 40px 20px 20px;
}

h1 {
    font-size: 3.5em;
    letter-spacing: 2px;
    text-shadow: 0 0 10px #fff;
    margin: 0;
}

.subtitle {
    font-size: 1.2em;
    color: #aaa;
    margin-top: 10px;
}

/* Links */
.links {
    margin: 50px 0;
}

.links h2 {
    font-size: 2em;
    margin-bottom: 20px;
    text-shadow: 0 0 8px #888;
}

.links ul {
    list-style: none;
    padding: 0;
}

.links li {
    margin: 15px 0;
}

.links a {
    color: #fff;
    font-size: 1.8em;
    text-decoration: none;
    text-shadow: 0 0 8px #666;
    transition: all 0.3s ease;
}

.links a:hover {
    color: #f00;
    text-shadow: 0 0 12px #f00;
}

/* Texto central */
.about {
    margin: 50px auto;
    max-width: 700px;
    line-height: 1.8;
    font-size: 1.3em;
    text-shadow: 0 0 6px #333;
}

/* Footer */
footer {
    border-top: 1px solid #333;
    padding: 20px;
    font-size: 0.9em;
    color: #777;
}




