body,
html {
    width: 100vw;
    height: 100vh;
    min-height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Arial', 'sans-serif';
}


.content div {
    margin: 0;
    padding: 0;
}

input {
    font-family: 'Roboto', 'Arial', 'sans-serif';
    font-size: larger;
    background-color: rgba(255,255,255,0.6);
    color: black;
    border: none;
    flex: 1;
    padding: .5rem;
    border-radius: 0.25em;
    transition: color 0.25s ease-out, background-color 0.5s ease-out;
}

div.fauxterminal{
    text-align: left;
    color: white;
    font-family: Roboto Mono, monospace;
    background-color: rgb(30, 30, 30);
    border-radius: 1em;
    margin: 1em;
    width: 90%;
    max-height: 30vh;
    overflow: auto;
}

.fauxterminal p{
    margin: 1em;
}

.fauxterminal p.error{
    color: rgb(247, 81, 81);
}

.fauxterminal p.operation{
    color: rgb(39, 95, 216);
}

.fauxterminal p.success{
    color: rgb(39, 216, 98);
}

input.wrong{
    background-color: rgba(255, 85, 85, 0.6);
    color: white;
}

button {
    margin: 0 0.5em;
    font-family: 'Roboto', 'Arial', 'sans-serif';
    font-size: larger;
    background-color: transparent;
    outline: none;
    color: white;
    border: 1px solid white;
    flex: 1;
    padding: .5rem;
    border-radius: 0.25em;
    transition: background-color 0.2s ease-out;
}

button:hover{
    background-color: rgba(255,255,255,0.3);
}

button:active{
    background-color: rgba(255,255,255,0.2);
}

.container {
    width: 100%;
    height: 100%;
    background-color: #070707;
    color: #DEDEDE;
}

.page-bounds {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.hidden {
    opacity: 0;
    visibility: none;
    z-index: -1;
}

span.icon {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 1.5em;
    width: 1.5em;
    margin: 0.5em
}

.screenmix {
    mix-blend-mode: screen;
}

.psi-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 10em;
}

.psi-logo {
    position: absolute;
    width: 10em;
    height: 10em;
    background: url("../media/rgb_psi.png");
    background-size: cover;
    background-position: 0%;
    background-repeat: no-repeat;
}

.psi-logo.y {
    background-position: 66.6%;
}

.psi-logo.z {
    background-position: 33.3%;
}

.psi-logo.dx {
    background-position: 99.9%;
}

.iconArray {
    display: inline-flex;
    font-size: 2em;
}

.foreign-icon {
    width: 1em;
    height: 1em;
    background-size: contain;
    background-repeat: no-repeat;
}

.foreign-emoji {
    padding: .8em;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.foreign-emoji.gpsi {
    background-image: url("../media/GlitchyPSI.png");
}

.foreign-emoji.pcomet {
    background-image: url("../media/Comet.png");
}

.foreign-icon.ng {
    background-image: url("../media/ng_tank.png");
}

.iconArray a {
    color: #EEE;
    text-decoration: none;
}

.iconArray * {
    padding-right: 0.5em;
}

span.icon.comet-logo {
    background-image: url("../media/Comet.png");
}

span.icon.glitchypsi-logo {
    background-image: url("../media/GlitchyPSI.png");
}

.content {
    width: 100%;
    height: 100%;
    display: flex;
    box-sizing: border-box;
    overflow: auto;
    flex-direction: column;
    justify-content: left;
    padding: 5em 2em;
}


h1 {
    color: #EEE;
}

.content.landing {
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.sidebar {
    z-index: 2;
    background-color: #366FFF;
    display: inline-block;
    position: absolute;
    height: 100vh;
    min-width: 20%;
}

.sidebar ul,
.topbar ul {
    margin: 0;
    padding: 0;
    font-size: 1.5em;
}

.navbar {
    margin: 0;
    padding: 0;
    display: inline-flex;
}

.sidebar a,
.sidebar span,
.navbar * {
    color: #EEE;
    text-decoration: none;
    font-weight: 100;
}

.navbar li {
    height: 100%;
    padding: 0 0.5em;
    align-items: center;
}

.navbar li.active {
    background: rgba(0, 0, 0, 0.2);
}

.navbar li * {
    color: #EEE;
    text-decoration: none;
    padding: 0 0.1em;
    font-size: 0.6em;
    font-weight: 700;
}

.sidebar li {
    list-style-type: none;
    margin: 0;
    display: flex;
    padding: 0.2em 0.5em;
    border-bottom: 1px rgba(0, 0, 0, 0.2) solid;
    background-color: rgba(0, 0, 0, 0.1);
    align-items: center;
}

.sidebar li.active {
    border-bottom: 1px rgba(0, 0, 0, 0.2) solid;
    background-color: rgba(0, 0, 0, 0.8);
}

.gpsigradient {
    background: #000000;
    background: -moz-linear-gradient(top, #000000 0%, #000000 59%, #070707 100%);
    background: -webkit-linear-gradient(top, #000000 0%, #000000 59%, #070707 100%);
    background: linear-gradient(to bottom, #000000 0%, #000000 59%, #070707 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#070707', GradientType=0);
}

.nazgradient {
    width: 100%;
    height: 100%;
    background: #366fff;
    /* Old browsers */
    background: -moz-linear-gradient(top, #366fff 1%, #1d50b7 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #366fff 1%, #1d50b7 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #366fff 1%, #1d50b7 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#366fff', endColorstr='#1d50b7', GradientType=0);
    /* IE6-9 */
}

.topbar {
    z-index: 3;
    position: fixed;
    width: 100%;
    display: inline-flex;
}

.topbar li {
    list-style-type: none;
    margin: 0;
    display: inline-flex;
}

.topbar li.activeIcon {
    padding: 0.2em 0.5em;
}


/* etc */

.menuButton {
    cursor: pointer;
}


/* media queries for mobile device considerations 

@media (max-width: 600px) {
    .sidebar {
        width: 100%;
        font-size: 0.5em;
    }
    .topbar {
        font-size: 0.5em;
    }
}*/