/*
    Grey:   hsl(160,0,80)
    Yellow: hsl(32,240,120)
*/

body {
    /* font-family: 'Ubuntu Mono', 'Inconsolata', monospace; */
    font-family: 'Inconsolata';
    font-family: 'Ubuntu Mono';
    font-size: 10pt;
    background-color: black;
    margin: 1em;
}
#content {
    /* margin-top: 1.25em; */
    display: flex;
    justify-content: center;
}
#content #background-text {
    position: fixed;
    filter: blur(0.75px);
    color: dimgrey;
    font-size: 9pt;
    line-height: 1.2em;
    white-space: pre-line;
    width: 90%;

    border: 1px solid dimgrey;
    padding: 2em;
    margin: 0em;

    overflow: auto;
    height: 85%;
}
#content #background-text::-webkit-scrollbar {
    display: none;
}

.dialog {
    display: flex;
    position: absolute;
    z-index: 1;
    background: rgb(85,85,85);
    background: linear-gradient(180deg, rgba(85,85,85,1) 0%, rgba(85,85,85,1) 50%, rgba(255,204,0,1) 50%, rgba(255,204,0,1) 100%);
    margin: 0 auto;
    margin-top: 20px;
    width: 50%;
}
@media only screen and (max-width: 600px) {
    .dialog {
        width: 75%;
    }
}
@media only screen and (max-width: 480px) {
    .dialog {
        width: 95%;
    }
}

.dialog .inner {
    border: 1px solid white;
    padding: 0px;
    margin: 0.25em;
    height: 50%;
    width: 100%;
}

.dialog .content {
    padding: 20px 20px 5px 20px;
    min-height: 5em;
    font-size: 10pt;  
}
.dialog .content.description-text {
    color: lightgrey;
}
.dialog .content.description-text H1 {
    font-size: inherit;
    font-weight: normal;
    margin: 0;
    color: white;
}
.dialog .content.actions {
    display: flex;
    text-align: right;
}
.dialog .content.actions .text {
    flex: auto;
    align-self: flex-end;
    text-align: left;
}

.dialog .content.actions button {
    border: none;
    margin-top: 10px;
    padding: 0;
    float: right;
    font-family: 'Inconsolata', monospace;
    font-size: 10pt;
    background-color: transparent;
    color: dimgray;
    cursor: pointer;
}
.dialog .content.actions button#ssl-button {
    float: left;
}
.dialog .content.actions button::before {
    content: "<";
}
.dialog .content.actions button::after {
    content: ">";
}



#useragent {
    margin-bottom: 1em;
}

.footer {
    position: fixed;
    bottom: 0;
    /* border-top: 1px solid dimgrey; */
    padding-top: 0.5em;
    padding-bottom: 2.5em;

    color: dimgrey;
    background-color: transparent;
    /* filter: blur(0.55px); */

    font-family: 'Consolas', monospace;
    font-size: 10px;
    text-transform: uppercase;
   
    width: 100%;
    text-align: center;
}
.footer address {
    font-style: normal;
}
