html, body {
    background-color: black;
    color: #eee;
}

hr {
    color: rgb(51, 255, 0);
}

hr.s {
    max-width: 300px;
}

a:link {
    color: rgb(51, 255, 0);
}

a:visited {
    color: rgb(51, 128, 0);
}

a:hover {
    color: white;
}

.frontpage {
    padding: 40px;
    padding-top: 0;
}

.frontpage .intro {
    padding-left: 1em;
}

.frontpage .intro p {
    padding-left: .5em;
}

.frontpage .pages {
    display: flex;
    flex-direction: column;
}

.frontpage .pages h2 {
    margin-left: -20em;
    align-self: center;
}

.frontpage .pages hr {
    min-width: 400px;
}

.frontpage .pages a{
    align-self: center;
}

.preamble {
    margin-left: 3.5em;
}

.preamble h1 {
    margin-bottom: 0;
    font-size: 2rem;
}
.preamble small {
    font-style: italic;
    font-size: 1rem;
}

.content .static-prompt {
    color: #888;
}

.content .static-prompt a{
    color: #bbb;
}

/* kudos to
https://stackoverflow.com/questions/13955163/imitating-a-blink-tag-with-css3-animations
*/
@keyframes blink {
    50% {
      opacity: 0.0;
    }
  }

.text-prompt:after {
    content: "_";
    color: white !important;
    font-weight: bold;
    animation: blink 1s step-start 0s infinite;
}

.content {
    padding: 12px;
    width: 100%;
    margin-top:0.5rem;
    margin-left: 4rem;
    background-color: #363636;
    color: rgb(51, 255, 0);
    position: relative;
    min-height: 65vh;
    max-height: 65vh;

    min-width: 800px;
    max-width: 800px;
    overflow: scroll;
    font-family: 'Courier New', Courier, monospace;

    scrollbar-color: rgb(51, 255, 0) #666;

    border-top: 6px inset #888;
    border-right: 10px outset #666;
    border-left: 10px inset #666;
    border-bottom: 18px outset #444;
}

.wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    margin-top: 1rem;
}

.content::-webkit-scrollbar {
    width: 12px;               /* width of the entire scrollbar */
}

.content::-webkit-scrollbar-track {
background: #666;        /* color of the tracking area */
}

.content::-webkit-scrollbar-thumb {
background-color: rgb(51, 255, 0);    /* color of the scroll thumb */
border-radius: 20px;       /* roundness of the scroll thumb */
border: 3px solid #666;  /* creates padding around scroll thumb */
}

.is-image-left img,
.is-image-right img,
.is-image-center img {
    max-width: 85%;
}

.is-image-left {
    margin-left: 3.5rem;
}

.is-image-center {
    display: flex;
    justify-content: center;
}

.is-image-right {
    display: flex;
    justify-content: end;
    margin-right: 3.5rem;
}

footer {
    text-align: center;
}
