body {
  background-image: url("/images/eldritchbg.png");
  background-repeat: repeat;
  background-size: auto;
  font-family: "Josefin Sans", sans-serif;
  cursor: url('/images/swordcursor.png'), auto;
  /*opacity: 0.9; filter: sepia(100%); - INCASE WANNA TURN THE FILTER ON ALL*/
}

#lists {
  max-width: 1000px;
  margin: 1rem auto;
  width: 90%; 
}

#lists > div {
  flex: auto;
  margin-bottom: 1rem;
  background-color: white;
  border-radius: 5px;
  /*outline: 3px solid black;*/
  break-inside: avoid;
  position: relative;
}

#lists > div:has(h2) { padding:1rem; }

#lists img { max-width: 100%; display: block; }

@media only screen and (min-width: 500px) {
  #lists{columns:2;}
}

@media only screen and (min-width: 850px) {
  #lists{columns:3;}
}

li { 
  position: relative;
  margin-bottom: 10px;
}

li a:after {
  position: static;
  opacity: 0;
  transform: translateX(-100%);
  display:inline-block;
  margin-left: 0.5rem;
  content: "\2726";
  transition: 0.1s;
}

li a:hover{
  margin: 10px;
}

li a:hover:after{
  opacity: 1;
  transform: none;
}

.checklist li { list-style-type: disc; }

.checklist .x { 
  text-decoration: line-through;
  list-style-type: disc;
  /*list-style-type: "disc"!important; OLD LINE FOR WHATEVER REASON*/
}

a {
  text-decoration: none;
  color: #BD0000;
}

a:hover {
  color:#BD8B00;
  cursor: url('/images/swordcursor.png'),auto; /* MAKE SURE SAME VALID URL WITH BODY TAG CURSOR*/
  }
  
a:after {
  position: static;
  opacity: 0;
  transform: translateX(-100%);
  display:inline-block;
  margin-left: 0.5rem;
  content: "\2726";
  transition: 0.1s;
  cursor: url('/images/swordcursor.png'),auto; /* MAKE SURE SAME VALID URL WITH BODY TAG CURSOR*/
  }
  
p {
  line-height: 1.6;
  }

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
  font-style: normal;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: url("/images/reelbar.png");
    background-repeat: repeat;
    background-size: cover; /*    background-size: contain; WORKS TOO, DEPEND ON BACKGROUND COMPABILITY*/
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #BD0000; 
}