/* styles.css */
body {
    font-family: 'Courier New', Courier, monospace;
    background-color: black;
    color: #00FF00; /* Verde brillante */
    margin: 0;
    padding: 0;
    line-height: 1.6;
    text-align: left;
}

.console {
    padding: 20px;
    font-size: 1.2rem;
}

#console-text {
    white-space: pre-wrap;
}

.input-container {
    margin-top: 10px;
}

.prompt {
    color: #00FF00;
    font-weight: bold;
}

#user-input {
    background: black;
    border: none;
    color: #00FF00;
    font-size: 1.2rem;
    outline: none;
    width: 100%;
}

#user-input:focus {
    border: none;
}

.hidden-content {
    display: none;
}

section {
    margin-bottom: 40px;
    margin-left: 20px; /* Se añade margen izquierdo a todas las secciones */
}

section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

section p {
    font-size: 1rem;
}

footer {
    text-align: center;
    margin-top: 40px;
}

footer p {
    font-size: 1rem;
    margin-top: 20px;
}

a {
    color: #00FF00;
}

a:hover {
    color: #00FF00;
    text-decoration: underline;
}

a:visited {
    color: #00FF00;
    text-decoration: none;
}