@-webkit-keyframes cursor-blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@-moz-keyframes cursor-blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes cursor-blink {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
body {
    background-color: black;
}
td {
    width: 100px;
}

.folder {
    color: #3336f0;
}

.terminal {
    position: relative;
    padding: 1rem;
}
.terminal .prompt {
    color: #1ff042;
    display: block;
    font-family: 'AndaleMono', monospace;
    font-weight: bold;
    /*text-transform: uppercase;*/
    font-size: 0.9em;
    letter-spacing: 0.15em;
    white-space: pre-wrap;
    /*text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);*/
    line-height: 1;
   /*margin-bottom: 0.75em;*/
    margin: 2px 2px;
    padding: 0;
}
.green {
    color: #1ff042;
    display: block;
    font-family: 'AndaleMono', monospace;
    font-weight: bold;
    /*text-transform: uppercase;*/
    font-size: 0.9em;
    letter-spacing: 0.15em;
    white-space: pre-wrap;
    /*text-shadow: 0 0 2px rgba(31, 240, 66, 0.75);*/
    line-height: 1;
    margin: 2px 0;
    padding: 0;
}
.error {
    color: #f0050d;
    display: block;
    font-family: 'AndaleMono', monospace;
    font-weight: bold;
    /*text-transform: uppercase;*/
    font-size: 0.9em;
    letter-spacing: 0.15em;
    white-space: pre-wrap;
    text-shadow: 0 0 2px rgba(240, 5, 13, 0.75);
    line-height: 1;
    margin: 2px 0;
    padding: 0;
}
.terminal .prompt:before {
    content: 'oghouz:~$ ';
    display: inline-block;
}
.terminal .new-output {
    display: inline-block;
}
.terminal .new-output:after {
    display: inline-block;
    vertical-align: -0.15em;
    width: 0.75em;
    height: 1em;
    margin-left: 5px;
    background: #1ff042;
    box-shadow: 1px 1px 1px rgba(31, 240, 66, 0.65), -1px -1px 1px rgba(31, 240, 66, 0.65), 1px -1px 1px rgba(31, 240, 66, 0.65), -1px 1px 1px rgba(31, 240, 66, 0.65);
    -webkit-animation: cursor-blink 0.6s steps(1) infinite;
    -moz-animation: cursor-blink 0.6s steps(1) infinite;
    animation: cursor-blink 0.6s steps(1) infinite;
    content: '';
}

.console-form {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
}