/**/
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Spline+Sans+Mono:ital,wght@0,300..700;1,300..700&display=swap');


@font-face {
    font-family: 'daisy wheel';
    src: url(https://file.garden/Z1NrfbbjjD-R7zcB/fonts/daisywhl.otf);
}

@font-face {
    font-family: 'Comico';
    src: url(https://file.garden/Z1NrfbbjjD-R7zcB/fonts/Comico-Regular.ttf);
}

:root{
    --black: #111111;
    --midblue: #213750;
    --red: #842e41;
    --blackBorder: solid 3px #0b0b0b;
    --whiteBorder: solid 3px antiquewhite;
    --comicShadow: -5px 5px 0px;
}

body{
    background-color: #4b5054;
    background-image: url(images/bat11.png);
    background-size: cover;
    background-blend-mode: overlay;
    font-family: 'daisy wheel';
    cursor: url(cursors/batsymbol1_cursor.png), auto;
}

::selection{
    background-color: var(--black);
    color: whitesmoke;
}

.title::selection{
    background-color: #393939;
    color: antiquewhite;
}


.wrap {
    background-color: var(--black);
    background-image: url(images/new\ person.png);
    background-size: cover;
    background-blend-mode: overlay;
    border-radius: 10px;
    border: solid 4px antiquewhite;
    width: 54rem;
    height: 64rem;
    margin: 0 auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
}


.home-btn {
    background: linear-gradient(to bottom, #527196 0%,#5a90bc 50%,#4380b5 51%,#97bbd7 100%);
    position: fixed;
    top: 10px;
    border-radius: 10px;
    border: ridge 3px var(--midblue);
    padding: 4px;
    font-family: 'Comico';
    font-size: 1.3rem;
}

.home-btn a{
    color: var(--black);
    text-decoration: none;
}

.home-btn a:hover{
    color: #15477c;
}

#botoncito{
    position: absolute;
}

#botoncito button{
    background-color: var(--black);
}

.outbox{
    background: url(images/bat12.png), linear-gradient(to bottom, #cccccc00 0%, #1e1e1ef0 100%);
    background-blend-mode: overlay;
    background-size: 48%;
    height: 100%;
    border: 1px solid black;
}

.box1{ /*comic style box LIGHT*/ 
    background-color: #faebd7;
    border: var(--blackBorder);
    box-shadow: var(--comicShadow)
}

.box2{/*comic style box DARK*/
    background-color: var(--black);
    color: antiquewhite;
    border: var(--whiteBorder);
    box-shadow: var(--comicShadow);
}

header{
    background-color: var(--black);
    color: antiquewhite;
    top: 1rem;
    position: relative;
    left: 1rem;
    font-family: 'Comico';
    padding: 10px;
    border: var(--whiteBorder);
    width: fit-content;
    box-shadow: -5px 6px 0px;
    margin-bottom: 0.5rem;
}

#intro{
    position: relative;
    padding: 10px;
    right: -23.5rem;
    top: -6rem;
    width: 27rem;
}

p:hover{
    font-style: italic;
}

#update{
    position: relative;
    padding: 10px;
    left: 1rem;
    top: -12rem;
    width: 18rem;
}

h1, h2, h3{
    font-family: 'Comico';
}

nav{
    position: relative;
    top: -10rem;
    left: 1rem;
    width: fit-content;
    padding: 15px;
}

nav button{
    background-color: var(--black);
    color: whitesmoke;
    font-family: 'Comico';
    font-size: medium;
    border: solid 2px antiquewhite;
    padding: 8px;
    border-radius: 2px;
}

nav button:hover{
    background-color: antiquewhite;
    color: black;
}

nav button:disabled{
    background-color: #393939;
    border: solid 2px #474747;
    color: #808080;
}

button:hover, a:hover{
    cursor: url(https://file.garden/Z1NrfbbjjD-R7zcB/cursors/Link%20Select.cur), auto;
}

button:disabled:hover{
    cursor: url(https://file.garden/Z1NrfbbjjD-R7zcB/cursors/Unavailable.cur), auto;
}

.review-section{
    margin: 1rem;
    background-color: antiquewhite;
    border: var(--blackBorder);
    position: relative;
    top: -10rem;
    padding: 1rem;
    height: 34rem;
    overflow-y: scroll;
}

.review-section h2{
    line-height: 1rem;
}
/*styling comic cover*/
.cover img{
    border: solid 1.5px var(--black);
    width: 250px;
}

figure{
    margin: 1rem;
}

.tabcontent{
   box-sizing: border-box;
}

.log{
    display: flex;
}

.title{
    background-color: var(--black);
    color: rgb(255, 248, 248);
    padding: 0.8rem;
}

.review{
    padding-left: 8px;
}

.review p{
    padding-right: 1rem;
}

/*SCROLLBAR*/
.review-section {
  scrollbar-color: #111111 #FAEBD7;
}

/* Chrome, Edge and Safari */
.review-section::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}
.review-section::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #FAEBD7;
}

.review-section::-webkit-scrollbar-track:hover {
  background-color: #E8DAC8;
}

.review-section::-webkit-scrollbar-track:active {
  background-color: #E8DAC8;
}

.review-section::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #111111;
}

.review-section::-webkit-scrollbar-thumb:hover {
  background-color: #242424;
}

.review-section::-webkit-scrollbar-thumb:active {
  background-color: #5A5A5A;
}

/* Firefox (uncomment to work in Firefox, although other properties will not work!)  */
* {
  scrollbar-color: #5A90BC #213750;
}

/* Chrome, Edge and Safari */
*::-webkit-scrollbar {
  height: 10px;
  width: 8px;
}
*::-webkit-scrollbar-track {
  border-radius: 5px;
  background-color: #213750;
}

*::-webkit-scrollbar-track:hover {
  background-color: #2D4B6E;
}

*::-webkit-scrollbar-track:active {
  background-color: #365982;
}

*::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #4f7a9d;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #619BCA;
}

*::-webkit-scrollbar-thumb:active {
  background-color: #52AAE2;
}