body {
  background: url('/images/fullbgs/bg_torturechamber.png');
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: 'Inconsolata';
  text-transform: lowercase;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Inconsolata;
  src: url('/fonts/Inconsolata-Regular.ttf');
}

@font-face {
  font-family: Nevermine;
  src: url('/fonts/Nevermine.ttf');
}

::selection {
  background: rgba(187, 134, 252, 0.5);
  color: #FFF;
}

b, strong {
  background: rgba(191, 172, 96, 0.2);
  color: #5F855D;
  font-weight: 600;
  padding: 5px;
}

i, em {
  color: #ADAEB2;
  font-style: italic;
}

u, underline {
  color: #fff;
  text-decoration: underline;
  text-decoration-style: wavy;
  text-decoration-color: #183D74;
}

a, a:visited {
  color: #BFAC60;
  box-shadow: 0px -2px 0px inset #AA5631;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

a:hover {
  color: #ccc;
  box-shadow: 0px -15px 0px inset #6689A0;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

h1 {
  background: rgba(0, 0, 0, 0.7);
  font-size: 2em;
  font-weight: 600;
  color: #a6aa90;
  -webkit-text-stroke: 1px #EBF655;
  text-shadow: 2px 2px 0px #B8A34E;
  outline: 5px solid rgba(6, 22, 20, 0.5);
  padding: 10px;
  margin-bottom: 5px;
  text-align: center;
}

blockquote {
  display: block;
  background: rgba(0, 0, 0, 0.9);
  outline: 5px solid rgba(6, 22, 20, 0.5);
  padding: 10px 10px;
  margin-top: 10px;
  text-shadow: 0px 0px 2px #6689A0;
}

.tw {
  display: block;
  font-size: 1em;
  padding: 10px;
  background: rgba(0,0,0,0.9);
  outline: 5px solid rgba(6, 22, 20, 0.5);
}

.tw:before {
  content: "TW:";
  font-size: 1.5em;
  font-weight: 600;
  color: #5F855D;
  margin-right: 5px;
}

img {
  transform: scale(1,1);
  transition: all ease 0.8s;
}

img:hover {
  transform:scale(1.05,1.05);
}

.container-wrap {
  background: rgba(6, 22, 20, 0.7) url('/images/fullbgs/bg_spookyhouse.png');
  background-size: cover;
  border: 1px solid #403F5E;
  padding: 25px 15px;
}

.container {
  background: #000003;
  background-size: cover;
  background-position: bottom 50px right 100px;
  max-width: 950px;
  width: 100%;
  height: 700px;
  padding: 50px 40px;
  margin: 0px 20px;
  outline: 15px solid rgba(6, 22, 20, 0.5);
}

.container .topic {
  font-size: 4em;
  font-family: 'Nevermine';
  font-weight: 500;
  letter-spacing: 0.3em;
  margin-bottom: 20px;
  background: -webkit-linear-gradient(#5F855D, #ADAEB2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.content input {
  display: none;
}

.content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content .list {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 20%;
  margin-right: 50px;
}

.content .list label {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  padding-left: 25px;
  transition: all 0.5s ease;
  z-index: 10;
}

#home:checked ~ .list label.home,
#tennie:checked ~ .list label.tennie,
#hr:checked ~ .list label.hr,
#genshin:checked ~ .list label.genshin,
#about:checked ~ .list label.about {
  color: #fff;
}

.content .slider {
  position: absolute;
  left: 0;
  top: 0;
  height: 60px;
  width: 100%;
  border: 1px dashed #fff;
  box-shadow: 0 0 0 3px #36354F;
  padding:2px;
  transition: all 0.5s ease;
  background: #403F5E;
}

#home:checked ~ .list .slider {
  top: 0;
}

#tennie:checked ~ .list .slider {
  top: 60px;
}

#hr:checked ~ .list .slider {
  top: 120px;
}

#genshin:checked ~ .list .slider {
  top: 180px;
}

#about:checked ~ .list .slider {
  top: 240px;
}

.content .text-content {
  width: 80%;
  height: 100%;
  color: #eaeaea;
}

.content .text {
  display: none;
}

.content .text .title {
  display: block;
  border-bottom: 5px inset rgba(0, 0, 3, 0.8);
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Nevermine';
  background: -webkit-linear-gradient(#BFAC60, #6689A0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.container .text p {
  text-align: justify;
  line-height: 150%;
}

.container .text p:first-letter {
  font-family: 'Nevermine';
  font-size: 2em;
  vertical-align: bottom;
}

.content .text-content .home {
  display: block;
}

#home:checked ~ .text-content .home,
#tennie:checked ~ .text-content .tennie,
#hr:checked ~ .text-content .hr,
#genshin:checked ~ .text-content .genshin,
#about:checked ~ .text-content .about {
  display: block;
  height: 530px;
  padding: 20px;
  overflow: auto;
}

#tennie:checked ~ .text-content .home,
#hr:checked ~ .text-content .home,
#genshin:checked ~ .text-content .home,
#about:checked ~ .text-content .home {
  display: none;
}

.content .list label:hover {
  color: #BFAC60;
}

.book {
  display: block;
  background: rgba(12, 2, 5, 0.3) url('/images/fullbgs/bg_torturechamberpixel.png') no-repeat;
  background-size: cover;
  background-position: 50% 76%;
  box-shadow: 0px 0px 5px rgba(78, 78, 78, 0.1);
  border: 5px solid rgba(95,133,93,0.2);
  border-radius: 3px;
  padding: 15px;
  margin-bottom: 25px;
}

.book:last-of-type {
  margin-bottom: 0;
}

.book > div {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 16px;
}

.book img {
  outline: 5px solid rgba(49, 12, 17, 0.8);
}

.count {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.fic { 
  grid-area: 1 / 1 / 2 / 2; 
  background: #0d0d0d;
  border-radius: 3px;
  text-align: center;
  padding: 15px;
}

.wip { 
  grid-area: 1 / 2 / 2 / 3;
  background: #0d0d0d;
  border-radius: 3px;
  text-align: center;
  padding: 15px;
} 

big {
  font-size: 3em;
  font-weight: 600;
  color: #183D74;
}

.sub {
  display: block;
  font-size: 0.8em;
  color: #DBD47A;
}

#glenplayer02 {
  position:fixed;
  top: 1%;
  left: 0;
  margin-bottom:10px;
  margin-left:10px;
  display:flex;
  z-index:99;
}

#glenplayer02 a {
  text-decoration:none;
}

#glenplayer02 > div {
  align-self:center;
  -webkit-align-self:center;
}

.music-controls {
  user-select:none;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  width:22px;
  font-size:16px;
  cursor:pointer;
}

.playy, .pausee {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #6689A0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #6689A0;
  font-size: 22px;
  border-bottom: none;
}

.pausee {
  display:none;
}

.shadow {
  filter: drop-shadow(1px 1px 0 #0A4129) 
  drop-shadow(-1px 1px 0 #0A4129) 
  drop-shadow(0 2px 0 #0A4129) 
  drop-shadow(0 -1px 0 #0A4129) 
  drop-shadow(0 1px 1.5px #0A4129) 
  drop-shadow(0 -1px 1.5px #0A4129) 
  drop-shadow(1px -1px 1.5px #0A4129) 
  drop-shadow(-1px -1px 1.5px #0A4129);
}

.claw-1 {
  position: absolute;
  z-index: 100;
  right: 24vw;
  top: 5vh;
  height: 240px;
  width: 5px;
  background-color: rgba(85, 167, 85,0.5);
  border-right: 1px solid rgba(235, 246, 85,0.5);
  transform: rotate(90deg);
}

.claw-2 {
  position: absolute;
  z-index: 100;
  right: 23vw;
  top: 2vh;
  height: 180px;
  width: 5px;
  background-color: rgba(24, 61, 116,0.5);
  border-right: 1px solid rgba(235, 246, 85,0.5);
}

.claw-3 {
  position: absolute;
  z-index: 100;
  right: 22vw;
  top: 9vh;
  height: 140px;
  width: 5px;
  background-color: rgba(216, 85, 85,0.5);
  border-right: 1px solid rgba(235, 246, 85,0.5);
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

#treasure {
  display: block;
  position: fixed;
  bottom: 1vh;
  right: 15vw;
  width: 100px;
}

#treasure a, #treasure a:visited {
  box-shadow: none;
}

#treasure a:hover {
  box-shadow: none;
}

#controls {
  display: block;
  width: 250px;
  position: fixed;
  z-index: 10;
  bottom: 1vh;
  left: 8vw;
  transform: rotate(-10deg);
    animation-name: floating;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 15px); }
    100%   { transform: translate(0, -0px); }    
}