@font-face {
    font-family: UMr;
    src: url("/static/fonts/UbuntuMono-R.ttf");
}
@font-face {
    font-family: UMb;
    src: url("/static/fonts/UbuntuMono-B.ttf");
}
@font-face {
    font-family: UMri;
    src: url("/static/fonts/UbuntuMono-RI.ttf");
}
@font-face {
    font-family: UMbi;
    src: url("/static/fonts/UbuntuMono-BI.ttf");
}
@font-face {
    font-family: CMr;
    src: url("/static/fonts/Courier-R.ttf");
}

body {
    background: url("/static/img/rwx-logo-manner.png");
    background-color: #2c434d;
    /* background-repeat: no-repeat; */
    background-size: 100vw 100vh;
    font-family: UMr;
    font-size: 1.2em;
    color: #def;
    opacity: 0.85;
    overflow-wrap: break-word;
}

h1, h2, h3 {
    color: #fff;
    margin-bottom: 0;
    margin-top: 0;
    padding-top: .5em;
    padding-bottom: .25em;
}
ul {
    list-style-image: url('/static/img/icon-nav-arrow-right.svg');
}
li  {
    padding-bottom: .2em;
}
a:link, a:visited, a:hover {
    color: #c3e2ee;
}
a:active {
    color: #fff;
}

#main {
    margin: 2em 2em 2em 2em;
}

#nav {
    padding-bottom: .2em;
    padding-left: .2em;
}

#footer {
    /* width: 100%; */
    position: static;
    bottom: 15px;
}

.shell {
    background-color: rgba(26,40,46,0.7);
    border-style: solid none none solid;
    border-width: 2px;
    border-color: #1a282e;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-start; */
}
.scroll-shell {
    background-color: rgba(26,40,46,0.5);
    max-height: 80%;
    padding-top: .5em;
    padding-left: .2em;
    /* display: flex; */
    /* display: inline-block; */
    justify-content: start;
    justify-items: stretch;
    /* overflow: scroll; */
    /*    overflow-x: scroll; */
}
.shell-prompt-line {
    border-style: none none solid none;
    border-color: #43829e;
    border-width: 1px;

    padding-left: .2em;
    padding-bottom: .2em;
}
.shell-line {
    width: 100%;
    font-size: .8em;
}
.shell-prompt-user, .contact {
    color: #c0a35b;
}
.shell-prompt-host {
    color: #7b4e43;
}
.shell-command, .lang-switch {
    font-family: "CMr";
    font-size: .8em;
}
.project-name {
    color: #fff;
}
.section-header {
    color:#83c2ee;
}
.lang-switch {
    justify-content: center;
    display: grid;
}
.blink {
    user-select: none;
    animation: blink 1s steps(2, start) infinite;
}
@keyframes blink {
    to {
	visibility: hidden;
    }
}
