body {
    margin: 0;
    background: #ffffff;
    color: #ff6600;
    font-family: monospace;
}

#terminal {
    padding: 15px;
}

#output {
    white-space: pre-wrap;
    margin-bottom: 10px;
}

/* ESTILO PARA LOS ENLACES */
#output a {
    color: #ff6600;
    text-decoration: underline;
    display: inline-block;
    margin: 5px 0;
    cursor: pointer;
}

#output a:hover {
    background: #ff6600;
    color: #ffffff;
}

input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: #ff6600;
    font-size: 16px;
    font-family: monospace;
    caret-color: #ff6600;
}

.prompt::before {
    content: "neo@search:~$ ";
}

/* Multimedia */
#output img, 
#output iframe, 
#output audio {
    display: block;
    margin: 10px 0;
    border: 1px solid #ff6600;
    max-width: 100%;
}

audio {
    filter: sepia(100%) saturate(300%) hue-rotate(330deg);
    height: 30px;
}