/* If you can read this you should hire me! */

@font-face {
    font-family: 'fixedsys_excelsior_3.01Rg';
    src: url('fonts/fsex300.woff2') format('woff2'),
         url('fonts/fsex300.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}
body {background: #000000 /*url("graphics/gradient.png") repeat-y scroll center*/;
    display: flex;
    position: fixed;
    flex-direction: row;
    margin: 5.5%;
    margin-top: 3%;
    height:80%;
    width: 100%;
}

h1 {font-family: 'fixedsys_excelsior_3.01Rg';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    color: #00ff00;}

h2 {font-family: 'fixedsys_excelsior_3.01Rg';
    font-style: normal;
    font-weight: 500;
    font-size: 32px;
    text-transform: uppercase;
    text-align: center;
    color: #008800;}

h3 {font-family: 'fixedsys_excelsior_3.01Rg';
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 18px;
    color: #005500;}

    
.blinking{
    animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText {
    0%{color: #00ff00;}
    30%{color: #000;}
    40%{color: transparent;}
    60%{color: transparent;}
    70%{color: #000;}
    100%{color: #00ff00;}
}
    
.navbar {
    flex-grow: 1;
    font-family: 'fixedsys_excelsior_3.01Rg';
    color: #00ff00;
    font-size: 36px;
    background-color: rgb(0, 0, 0);
    overflow: hidden;
    position: fixed;
    bottom: 5%;
    width: 100%;
}

.commandline{
    font-family: 'fixedsys_excelsior_3.01Rg';
    font-size: 36px;
    background-color: #000;
    color: #00ff00;
    border: none;
    outline: none;
    width: 75%;
}

.growbox { 
    flex-grow: 2;
    border: none;
    margin-right: 10vh; 
    padding: 0;
    overflow: auto;
}