html {
    border-top: solid 6px #00f;
}

body {
    color: white;
    background-color: black;
    font-family: "Droid Sans Mono", "Courier New", Courier, monospace;
    font-size: 1.3em;
    line-height: 1.3;
    border-top: solid 6px #ff0;
    margin:0;
}
  @media screen and (prefers-color-scheme: light) {
    body {
      background-color: white;
      color: black;
    }
  }

  @media (prefers-color-scheme: dark) {
    img {
      opacity: .75;
      transition: opacity .5s ease-in-out;
    }
    img:hover {
      opacity: 1;
    }
  }


::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-thumb {
    background-color: #aaa;
    box-shadow: 0px 0px .2em rgba(200, 165, 165, 1);
    -webkit-box-shadow: 0px 0px .2em rgba(200, 165, 165, 1);
}
::-webkit-scrollbar-corner {
    background: #eff3ff;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
only screen and (-o-min-device-pixel-ratio: 15/10),
only screen and (min-resolution: 150dpi)
     {
	 body {
             font-size: 1.8em;
	 }
     }

ul {
    list-style: none;
    margin-left: 0;
    padding-inline-start: 0;
    line-height: 2;
}

.picdiv {
    bottom: -34px;
    left: -15px;
    position: relative;

}
.pic {
    width: 9em;
    height: 9em;
    border-radius: 10em;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -webkit-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -moz-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
}
.shadowpic {
    box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -webkit-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    -moz-box-shadow: 0 0 .5em rgba(200, 165, 165, 1);
    margin-left: 2em;

    display:block;
}
.head-mid {
    font-size: 2.5em;
    width: 40%;
    margin: auto;
    position: relative;
    vertical-align: bottom;
    display: inline-block;
    text-shadow: 0px 0px .2em rgba(200, 165, 165, .7);
}
.head-side {
    width: 8.75em;
    margin: auto;
    vertical-align: bottom;
    display: inline-block;
    margin: 5px;
    padding: 0 0 20px 0;
}
.head-wrap {
    width: 90%;
    margin: auto;
    margin: 40px 0 40px auto;
}
.main-wrap {
    width: 90%;
    margin: auto;
    margin: 40px 0 40px auto;
}

.main-side-title {
    font-size: 1.1em;
    padding: 10px 0 5px 0;
    position: relative;
    text-shadow: 0px 0px .2em rgba(200, 165, 165, .7);
}

.main-side {
    width: 9em;
    display: inline-block;
    margin: 5px;
    vertical-align: top;
    line-height: 1.5;
    padding: 0px 0 4em 0;
}

.main-mid {
    width: calc(90 - 15em);
    display: inline-block;
    margin: 5px;
    vertical-align: top;
    position: absolute;
    word-wrap: break-word;
    max-width: 36em;
    padding: 0 1em 0 0;
}
.main-mid-title {
    margin: 2em 0 .5em 0;
    padding: auto;
    vertical-align:top; 
    max-width: 34em;
    font-size: 1.5em;
    text-shadow: 0px 0px .2em rgba(200, 165, 165, .7);
    position: relative;
}
.main-mid-subtitle {
    margin: 1em 0 .5em 0;
    padding: auto;
    vertical-align:top;
    max-width: 34em;
    font-size: 1.2em;
    text-shadow: 0px 0px .2em rgba(200, 165, 165, .7);
    position: relative;
}

glitch {
    display:inline;
}

c {
    background-color: #edd;
    color: #777;
    border-radius: 6px;
    padding: 0px 4px 0px 4px;
}

tiny {
    font-size: .8em;

}

a {
    text-decoration: none;
    color: #595959;
    border-bottom: 1px solid #aaa;
}

@media screen and (prefers-color-scheme: dark) {
    a {
      color: #959595;
    }
  }

a:link {
    text-shadow: 0px 0px 8px rgba(200, 165, 165, .7);
}

a:hover {
    text-shadow: 0px 0px 5px rgba(110, 110, 110, .7);
}
a:active {
    text-shadow: 0px 0px 20px rgba(0, 0, 0, 1);
}

/* @import url('https://fonts.googleapis.com/css?family=Playfair+Display:400i|Raleway:100'); */

.news-title {
    margin: 2em 0 .5em 0;
    padding: auto;
    max-width: 34em;
    font-size: 1.7em;
    position: relative;
    font-family: 'Raleway', sans-serif;
}

/* start signature */
#signature {
    stroke: #202020;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 2779.38818359375;
    stroke-dashoffset: 2779.38818359375;
    -webkit-animation: sign 4s ease;
    animation: sign 4s ease;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }

  @-webkit-keyframes sign {
    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes sign {
    to {
      stroke-dashoffset: 0;
    }
  }

  #signaturesvg {
      width: fit-content;
  }