/*

██████╗ ███████╗███████╗███╗   ███╗███████╗██████╗ ██████╗ 
██╔══██╗██╔════╝██╔════╝████╗ ████║██╔════╝██╔══██╗██╔══██╗
██████╔╝█████╗  ███████╗██╔████╔██║█████╗  ██████╔╝██║  ██║
██╔══██╗██╔══╝  ╚════██║██║╚██╔╝██║██╔══╝  ██╔══██╗██║  ██║
██████╔╝███████╗███████║██║ ╚═╝ ██║███████╗██║  ██║██████╔╝
╚═════╝ ╚══════╝╚══════╝╚═╝     ╚═╝╚══════╝╚═╝  ╚═╝╚═════╝ 

*/

html {
    font-size: 62.5%;
}

body {
    font-family: 'Source Code Pro', monospace;
    font-size: 1.6rem;
    color: #ebdbb2;
    background-color: #282828;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0;
}

h1 {
    font-size: 4.3rem;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 1.5rem;
}

ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0;
}

a {
    color: #458588;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #d79921;
}

.content {
    padding: 40px 20px 0 20px;
}

.error {
    padding-top: 80px;
    text-align: center;
}

.error h1 {
    font-size: 12.5rem;
}

.error p {
    font-size: 2.5rem;
}

.stats {
    white-space: pre;
    color: #ebdbb2;
    font-weight: normal;
}

#prompt {
    color: #689d6a;
    padding-right: 0.3em;
}

#cursor {
    -webkit-animation: blink 1.2s step-end infinite;
    -moz-animation: blink 1.2s step-end infinite;
    -ms-animation: blink 1.2s step-end infinite;
    -o-animation: blink 1.2s step-end infinite;
    animation: blink 1.2s step-end infinite;
}

@-webkit-keyframes blink {
    0% { color: inherit; } 50% { color: transparent; }
}

@-moz-keyframes blink {
    0% { color: inherit; } 50% { color: transparent; }
}

@-ms-keyframes blink {
    0% { color: inherit; } 50% { color: transparent; }
}

@-o-keyframes blink {
    0% { color: inherit; } 50% { color: transparent; }
}

@keyframes blink {
    0% { color: inherit; } 50% { color: transparent; }
}

#status-line {
    background: #689d6a;
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0 2px;
}

#datetime {
    float: right;
}
/*
@media (orientation:portrait) {
    
    html {
        font-size: 150%;
    }
    
    body {
        font-size: 2.6rem;
    }
    
    .stats {
        display: none;
    }
    
    a:before, .stats {
        content: '> ';
        color: #ebdbb2;
    }
    
    #status-line {
        padding: 5px 20px;
    }
    
    #console {
        display: none;
    }
    
    #datetime {
        float: left;
    }
} 
*/
