/* 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;
}

*{
    box-sizing: border-box;
  }

/* ------------------------------------------ */

:root {
    --light-yellow: rgba(174, 137, 32, 0.8);
    --light-green: rgba(147, 183, 125, 0.8);
    --light-gray: rgba(141, 136, 124, 0.8);
    --light-blue: rgba(134, 184, 194, 0.8);
    --bright-green: rgba(68, 143, 73, 0.8);
    --light-purple: rgba(175, 116, 209, 0.8);
    --light-red: rgba(226, 75, 75, 0.8);
}

body {
    font-size: 62.5%;
    font-family: 'Source Code Pro', monospace;
    background: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: .5rem;
}

a {
    text-decoration: none;
}

#terminal-window {
    flex-grow: 1;
    margin: .5rem;
    padding: 1rem;
}

.terminalLine, 
.oldTerminalLine {
    font-size: 1rem;
    margin-bottom: .25rem;
}

.responseLine {
    font-size: 1rem;
    margin: .75rem 0 .5rem 2rem;
}

p {
    font-size: 1rem;
    display: inline;
    /* padding-left: -.5rem; */
    animation: typing 0.5s steps(30, end)
}

.banner {
    font-size: 1.2rem;
    color: var(--light-green);
    display: block;
}

.glow {
    color: var(--light-blue);
    text-shadow: 0 0 5px var(--light-blue)
}

.helpLine {
    margin-top: 1rem;
}

.userName {
    color:var(--light-yellow);
    margin: 0;
    padding: 0;
}

.at {
    color: var(--light-gray);
}

.address {
    color: var(--light-green);
}

.sudo {
    color: var(--light-gray)
}

.oldInput {
    color:var(--light-gray);
}

.terminalLine input {
    font-family: 'Source Code Pro', monospace;
    font-size: 1rem;
    line-height: 1rem;
    background: black;
    color: var(--light-yellow);
    caret-color: var(--light-green);
    border: none;
    animation: blink-caret .5s step-end infinite;
}

input:focus {
    outline: none;
}

.responseLine p {
    color: var(--light-purple);
    display: block;
}