body{
    font-family: "IBM Courier", monospace;
    margin:0;
    background-color: #232326;
    color: #FFF9F2;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
}

@media (pointer:coarse) {

    .hideOnMobile{
        display: none;
    }
}
.indent {
    margin-left: 2em;
    font-size: .9em;
}

.disableSelect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

h1{
    margin: 0;
    padding: 0;
}
.pageHeader{
    font-weight: bold;
    margin-bottom: .5em;
    display: flex;
}

.blocker{
    height: 20px;
    background-color: #FFF9F2;
    font-size: 16px;
    color: #232326;
    font-weight: bold;
    align-items: stretch;
    display: flex;
}

.banner{
    position: fixed;
    background-color: #EF5252;
    display: none;
    flex-direction: row;
    width: 100%;
    height: fit-content;
    justify-content: space-between;
    padding: 5px 10px;
    box-sizing: border-box;
}

.bannerText a {
    color: #FFF9F2;
    text-decoration: underline;
}

.bannerText a:hover {
    text-decoration: underline dotted;
    color:#FFF9F2;
}

.bannerText {
    padding-right: 20px;
}

.bannerDismiss {
    text-decoration: underline dotted;
    font-size: .8em;
    cursor: pointer;
}

.bannerClose{
    font-weight: bold;
    cursor: pointer;
}
.bannerClose:hover, .bannerDismiss:hover{
    text-decoration: underline;
}

.bannerButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
}

#workInProgress{
    background-color: #fff3b9;
    color: #9f9137;
    padding: 3vw;
}
#workInProgress p1{
    font-weight: bold;
    font-size: 3vw;
}

#workInProgress p2{
    font-size: 1.5em;
}

a:link {
    color: #FFF9F2;
}

/* visited link */
a:visited {
    color: #FFF9F2;
}

/* mouse over link */
a:hover {
    text-decoration: underline dotted;
    color:#EF5252;
}
a svg:hover {
    fill: #232326;
    stroke: #FFF9F2;
    stroke-width: 5px;
}

/* selected link */
a:active {
    color: #232326;
}

.pointer {
    cursor: pointer;
}
::-webkit-scrollbar {
    width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #232326;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #FFF9F2;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #D6D6D6;
}

@media screen and (max-width: 557px) {
    .indent {
        margin-left: .5em;
        font-size: .8em;
    }

    .bannerText {
        font-size: .8em;
    }

    .bannerButtons {
        flex-direction: column-reverse;
        align-items: flex-end;
        gap: .4em;
        justify-content:center;
    }
}

body {
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
}
