/* /estilos.css (RETRO MODE) */

/* Estilos globales para tu sitio */
body {
    font-family: 'Courier New', Courier, monospace;
    /* Monospace for that retro terminal feel */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #FAFAFA;
    /* Light Retro Background */
    color: #1a1a1a;
    /* Classic Dark Text */
    font-family: 'Courier New', Courier, monospace;
    /* Keep Retro Font */
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Custom Retro Scrollbar (Light) */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #e0e0e0;
    border-left: 2px solid #000;
}

::-webkit-scrollbar-thumb {
    background: #000;
    /* Solid Black Thumb */
    border: 2px solid #e0e0e0;
}

::-webkit-scrollbar-thumb:hover {
    background: #333;
}

h1,
h2,
h3 {
    margin-top: 0;
    font-weight: 700;
    color: #000;
    /* Solid Black Headings */
    text-transform: uppercase;
    letter-spacing: -1px;
}

a {
    color: #0000EE;
    /* Classic Link Blue */
    text-decoration: underline;
}

a:hover {
    background-color: #0000EE;
    color: #fff;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
    border-top: 2px solid #000;
    /* Hard Black Border */
    font-size: 0.9rem;
    background-color: #fff;
    color: #000;
}