/* This style partly stolen from velartrill @ xn--rpa.cc */

h1 {
    text-align: left;
    line-height: 120%
}

h2 {
    text-align: left;
    line-height: 120%
}

h3 {
    text-align: left;
    line-height: 120%
}

h4 {
    text-align: left;
    line-height: 120%
}

h5 {
    text-align: left;
    line-height: 120%
}

h6 {
    text-align: left;
    line-height: 120%
}

body {
    background: hsl(180,50%,6%);
    color: hsl(180,100%,80%);
    width: 40em;
    max-width: 90%;
    text-shadow: 0px 0px 1em hsl(180,40%,35%);
    margin: auto;
    text-align: justify;
    font-family: "Times New Roman", serif;
    font-size: 16pt;
    line-height: 135%;
}

.caption {

    text-align: center;
    font-size: 14pt;
    text-decoration: underline;
    padding-top: 0.5ex;
    padding-bottom: 4ex;
    line-height: 100%;

}

a:link {
    color: hsl(180,100%,80%);
    transition: color 0.25s ease-in-out;
}

a:visited {
    color: hsl(200,60%,70%);
}

a:hover {
    color: hsl(180,0%,90%);
    text-shadow: 0px 0px 1em white;
}

a:active {
    color: red;
    text-shadow: 0px 0px 1em red;
}

img {
    width: 100%;
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 0.5em;
    box-shadow: 0px 0px 0.75em hsl(180,40%,80%);
}

li {
    margin:0.5pt;
    font-size: 1em;
    line-height: 1.4em;
}

hr {
    border-color: hsl(180,100%,80%);
    box-shadow: 0px 0px 2.2em hsl(180,40%,80%);
}

code {

    font-family: monospace;
    /*font-size: 1em;*/
    display: inline-block;
    /*padding: 0.2em;*/
    word-wrap: normal;
    margin:auto;

}

pre > code{

    font-size: 1.2ex;
    border:0.1em solid hsl(180,100%,80%);
    box-shadow: 0px 0px 0.2em hsl(180,40%,60%);
    max-width:85ex;
    display: block;
    width:85ex;
    padding:4ex;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;       /* Internet Explorer 5.5+ */

}

details {

    border:0.1em solid hsl(180,100%,80%);
    box-shadow: 0px 0px 0.2em hsl(180,40%,60%);
    max-width:85ex;
    width:85ex;
    padding:1ex

}


