/* RESET CSS MEYER */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed,figure, figcaption, footer, header, hgroup,menu, nav, output, ruby, section, summary,time, mark, audio, video {margin: 0;padding: 0;border: 0;font-size: 100%;font: inherit;vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure,footer, header, hgroup, menu, nav, section {display: block;}body {line-height: 1;}ol, ul {list-style: none;}blockquote, q {quotes: none;}blockquote:before, blockquote:after,q:before, q:after {content: '';content: none;}table {border-collapse: collapse;border-spacing: 0;}
/* FIN RESET CSS MEYER */

html, body {
    font-family: "Montserrat", sans-serif;
}
body {
    color: #ffffff;
}
.text-blue {
    color: #27940c;
}
#background {
    background: #000000;
    width: 100vw;
    position: absolute;
    height: 100vh;
    top: 0;
    z-index: -1;
}

body {
    background-color: #0c0c0c;
    color: #00ff00;
    font-family: 'Courier New', monospace;
    height: 100vh;
    overflow: hidden;
}

.terminal-container {
    height: 100vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
}

.terminal-header {
    margin-bottom: 20px;
    border-bottom: 1px solid #00ff00;
    padding-bottom: 10px;
}

.terminal-title {
    font-size: 1.5em;
    text-align: center;
    margin-bottom: 10px;
}

.terminal-info {
    font-size: 0.9em;
    text-align: center;
    opacity: 0.8;
}

.terminal-output {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
}

.terminal-output::-webkit-scrollbar {
    width: 6px;
}

.terminal-output::-webkit-scrollbar-track {
    background: #0c0c0c;
}

.terminal-output::-webkit-scrollbar-thumb {
    background: #00ff00;
    border-radius: 3px;
}

.terminal-line {
    margin-bottom: 5px;
    word-wrap: break-word;
}

.prompt {
    color: #00ff00;
}

.command {
    color: #ffffff;
}

.error {
    color: #ff0000;
}

.file-content {
    color: #ffff00;
    margin-left: 20px;
}

.directory {
    color: #00aaff;
}

.file {
    color: #ffffff;
}

.btn {
    position: absolute;
    top: 0;
    border-radius: 30px;
    right: 20px;
    top: 22px;
    background: #ffffff;
    background-color: rgb(255, 255, 255);
    color: #27940c;
    padding: 5px 20px;
}
.btn:hover {
    border: 1px solid;
}

.input-container {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

.prompt-symbol {
    color: #00ff00;
    margin-right: 5px;
}

#command-input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: 'Courier New', monospace;
    font-size: 1em;
    flex: 1;
    caret-color: #00ff00;
    width: 100%;
    text-transform: lowercase;
}

.cursor {
    background-color: #00ff00;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.welcome-text {
    color: #00aaff;
    margin-bottom: 20px;
}

.help-text {
    color: #ffff00;
    font-size: 0.9em;
}

@media (max-width: 1090px) {
    .btn{
        position: relative;
        right: 0;
        top: auto;
        left: 0;
        margin: 0 auto;
        margin-bottom: 0px;
        display: block;
        width: 240px;
        margin-bottom: 20px;
    }
}

.infos {
    font-size: 0.8rem;
    color: #27940c;
    margin-bottom: 10px;
}
#removeall {
    color: red;
    text-align: center;
}