:root {
  --accent:darkred;
}

html, body {
  color:white;
  scroll-behavior:smooth;
  background-color:black;
  font-family:Georgia, serif;
  cursor:url("assets/cursor.png"), default;
}

@font-face {
  font-family:"Sell Your Soul";
  src:url("https://foggybear42.net/shrines/supernatural/fonts/Sell_Your_Soul.woff") format("woff");
}

@font-face {
  font-family:"GHOSTWRITER";
  src:url("https://foggybear42.net/shrines/supernatural/fonts/GHOSTWRITER.woff") format("woff");
}

h1 {
  color:darkred;
  font-size:55px;
  margin-top:30px;
  text-align:center;
  margin-bottom:5px;
  padding-bottom:35px;
  border-bottom:2px inset darkred;
  font-family:"Sell Your Soul", serif;
}

h2 {
  margin:0;
  color:darkred;
  font-size:30px;
  font-family:"GHOSTWRITER", serif;
}

h3 {
  margin:3px 0;
  color:darkred;
  font-size:20px;
  border-bottom:2px inset darkred;
  font-family:"GHOSTWRITER", serif;
}

p {
  margin-top:2px;
  margin-bottom:8px;
}

ul {
  margin-top:0;
  padding-left:25px;
}

li {
  line-height:18px;
  padding-left:5px;
  list-style-type:"⛤";
}

blockquote {
  color:grey;
  padding:5px;
  margin-top:10px;
  margin-left:18px;
  font-style:italic;
  padding-left:10px;
  border-left:4px solid darkred;
}

textarea {
  width:90%;
  padding:10px;
  border-radius:5px;
  background:darkred;
  border:1px solid darkred;
}

hr {
  margin-bottom:15px;
  border:1px solid darkred;
}

a {
  color:darkred;
  text-decoration:none;
  transition:.5s linear;
  cursor:url("assets/pointer.png"), pointer;
}

a:hover {
  color:white;
  transition:.2s linear;
  text-decoration:line-through;
  cursor:url("assets/pointer.png"), pointer;
}

summary {
  margin-bottom:15px;
  cursor:url("assets/pointer.png"), pointer;
}

details > summary {
  list-style:none;
}

details > summary::-webkit-details-marker {
  display:none;
}

.help {
  opacity:50%;
  text-decoration:dotted underline;
}

.outlink:after {
  content:"⤤";
}

::selection {
  color:black;
  background-color:darkred;
}

::-webkit-scrollbar {
  color:darkred;
}

::-webkit-scrollbar-track {
  background:black;
}

::-webkit-scrollbar-thumb {
  background:darkred;
}

::-webkit-scrollbar-thumb:hover {
  background:black;
  border:1px solid white;
}

::-webkit-resizer {
  background:darkred;
}