@font-face {
  src: url("fonts/Berrie.otf");
  font-family: Berrie;
  }

@font-face {
  src: url("fonts/Atkinson-Hyperlegible-Regular-102.ttf");
  font-family: Hyperlegible;
  }

html{
  height: 100%;
  font-family: Hyperlegible;
}

:root {
  /*background color*/ --bgcolor: black;
  /*background image*/ --bgimg: url("img/cloudbg.jpg");
  /*border color*/ --bcolor: #592ec5;
  /*body text color*/--txtcolor: rgb(35, 19, 107);
  /*link color*/--acolor: rgb(19, 67, 107);
  --hcolor: #592ec5;
  /*navbar bg color*/--boxes1: #f5a9fc;
  /*updates bg color*/--boxes2: #ffbefa;
  /*content bg color*/--container: #fdd4f6;
  /*border style*/--bstyle: solid;
  /*border width*/--bwidth: 2px;
  /*border radius*/--bradius: 30px;
  /*full view overlay*/--overlay: rgba(255, 204, 240, 0.7);
  --padding: 10px;
  --margin: 1em;
  
}

h1 {
line-height: 0em;
padding: 0em;
margin-top: 0em;
}

h2 {
line-height: 0em;
padding: 0em;
margin-top: .5em;
margin-bottom: 0em;
}

a {
color: var(--acolor);
}

a:active {
color: var(--acolor);
}

.button {
background-color: #E5D4FF;
color: #6031B4;
border: 1px solid;
border-radius: 5px;
padding: 5px;
margin: .5em;
}

.button:hover{
background-color: #efe8fc;
color: #6031B4;
border: 1px solid;
border-radius: 5px;
padding: 5px;
margin: .5em;
}

.button:active{
background-color: #ccb9f0;
color: #6031B4;
border: 1px solid;
border-radius: 5px;
padding: 5px;
margin: .5em;
}

.leftalign {
text-align: left;
}
.center {
text-align:center;
}

.subtitle {
height: 20px;
padding: var(--padding);
}

.logo {
  padding: 0px .5em 0px .5em;
  height: 2em;
}

#splash-pos {
position: absolute;
width: 100%;
}

#splash {
width: 100%;
margin:auto;
text-align: center;
width: 500px;
height: 300px;
border: solid;
border-color: #331d72;
border-radius: 40px;
background-color: var(--container);
color: var(--txtcolor);
position: relative;
top: 300px;
}

/*updates area*/
#updates{
padding-top: var(--padding);
padding-left: var(--padding);
padding-right: var(--padding); 
}

#updates iframe {
display: block;
border-radius:10px;
border-style:dashed;
border-color: var(--bcolor);
margin: auto;
width: 325px;
height: 230px;
}

/*updates page*/
#ubox {
background-color: var(--boxes2);
text-align:center;
font-family:Hyperlegible;
font-size: 16px;
overflow-x: hidden;
background-image: none;
padding: 0px 15px 0px 15px;
}

#ubox ul{
padding: 5px;
}

/*cbox area*/
#cbox iframe {
margin: auto;
height: 290px;
border-radius: 10px;
border-color: var(--bcolor);
border-style:dashed;
}

/*about page*/
#about {
display: inline;
}

#about img {
display: inline;
float: right;
padding-left: 15px;
}

#about p {
text-align: left;
padding: 0px 20px 0px 20px;
}

/*chao garden*/
.chao {
display: flex;
flex-wrap: wrap;
margin: auto;
justify-content: center;
}

.chaopr {
display: flex;
overflow-x: auto;
justify-content: center;

}

#desc ul{
text-align: left;
list-style-type: none;
margin-left: 0;
}

/*status.cafe*/
#statuscafe {
font-size: 15px;
  padding: .5em;
  background-color: rgb(229, 212, 255);
  border: 1px dashed #331d72;
  border-radius: 10px;
  width: fit-content;
  margin: auto;
}
#statuscafe-username {
  margin-bottom: .5em;
}
#statuscafe-content {
  margin: 0 1em 0.5em 1em;
}

/*furry ring*/
#furryring {
  margin: auto;
  text-align: center;
}

#furryring table {
margin-left: auto;
margin-right: auto;
}

#table {
margin-left: auto;
margin-right: auto;
}

.thumb {
margin:3px;
position: relative;
top: 0;
left: 0;
}

.thumb img{
max-height:180px;
}

/*fun*/
.clubs {
display: flex;
flex-wrap: nowrap;
gap: 10px;
}

#kittyclub {
flex-basis: auto;
}

#rpgclub {
flex-basis: auto;
}

#pot {
filter: drop-shadow(5px 5px 4px #9264b8);
}

#shelf {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
}

#shelf iframe {
width: 250px;
height: 250px;
overflow: hidden;
filter: drop-shadow(5px 5px 4px #9264b8);
}


/*changelog page*/
#changelog iframe {
display: block;
border-radius:10px;
border-style:solid;
border-color: var(--bcolor);
margin: auto;
width: 90%;
height: 33em;
}

/*phone version*/
@media (max-width: 900px) {
body{
  background-image: var(--bgimg);
  background-color: var(--bgcolor);
}

#box {
  width: 100%;
  margin:auto;
  text-align: center;
}

/*header area*/
header img {
  width: 100%;
}

/*sidebar*/
nav {
  background-color: var(--boxes1);
  border-radius: var(--bradius);
  border-style: var(--bstyle);
  border-color: var(--bcolor);
  border-width: var(--bwidth);
  padding: var(--padding);
  height: fit-content;
  margin-bottom: var(--margin);
}

.navbar ul{
  list-style-type: none;
  padding-left: 0;
  display:block;
  line-height: 1.5; 
  display: flex;
  flex-wrap: wrap;
  gap: .5em;
  justify-content: center;
}

.navbar img {
  height: 19px;
}

#lila {
  display: none;
}

main {
  background-color:var(--container);
  background-image: url("img/graph_paper-transparent.png");
  overflow: hidden;
  border-radius: var(--bradius);
  border-style: var(--bstyle);
  border-color: var(--bcolor);
  border-width: var(--bwidth);
  margin-bottom: var(--margin);
  padding-bottom: 20px;    
}

/*content box*/
#container{
padding-top: 20px;
padding-left: 20px;
padding-right: 20px;
}


.subtitle1 {
max-width: 100%;
padding: var(--padding);
margin: auto;
}

/*cbox area*/
#cbox{
padding: var(--padding);
width: 325px;
margin: auto;
}

/*art pages*/
#gallery1 {
display: flex;
flex-wrap: wrap;
justify-content: center;
height: 350px;
overflow-y: auto;
}

#gallery1 img {
height: 150px;
margin: .25rem;
border-radius: 10px;
}

#gallery2 {
display: flex;
flex-wrap: wrap;
justify-content: center;
height: 350px;
overflow-y: auto;
}

#gallery2 img {
height: 150px;
margin: .25rem;
border-radius: 10px;
}

#gallery3 {
display: flex;
flex-wrap: wrap;
justify-content: center;
height: 350px;
overflow-y: auto;
}

#gallery3 img {
height: 150px;
margin: .25rem;
border-radius: 10px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 350px;
  overflow-y: auto;
  gap: .30rem .70rem;
  }
  
  .gallery img {
  margin: .25rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  object-fit: cover;
  }
    
  .galthumb {
      height: 150px;
      max-width: 205;
      border-radius: 10px;
  }
  .expand {
      /* Default to hidden */
          display: none;
      /* Overlay entire screen */
          position: fixed;
          z-index: 999;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
      /* A bit of padding around image */
          padding: 1em;
      /* Translucent background */
          background: var(--overlay);
      }
  
      /* Unhide the lightbox when it's the target */
      .expand:target {
          display: block;
      }
  
      .expand img {
      /* Full width and height */
          max-width: 100% !important;
          display: block;
          margin: auto;
          margin-top: 50;
      }
  
      .fullview {
      /* Default to hidden */
          display: none;
      /* Overlay entire screen */
          position: fixed;
          z-index: 999;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
      /* Translucent background */
          background: var(--overlay);
          overflow-y: auto;
      }
  
      /* Unhide the lightbox when it's the target */
      .fullview:target {
          display: block;
      }
  
      .fullview img {
      /* Full width and height */
          display: block;
          margin: auto;
          padding: 10px;
          max-width: 100%;
          position: relative;
          top: 20px;
          left: 0;
          right: 0;
          bottom: 0;
      }
  
      .meta { 
          text-align: center;
          margin: auto;
          margin-top: 5px;
          width: 100%;  
          background-color: #511579;
          border-radius: 15px; 
      }
  
      .desc {  
          padding: 10px;
          color: white;
      }
  
      .desc a {
          color: var(--container);
      }
  
      .desc a:active {
          color: rgb(119, 216, 255);
      }

/*catgirl shrine*/
#catgirls {
text-align: left;
}

#catgirls img {
max-width: 100%;
}

#portclear{
clear: both;
}

#portclear p {
font-size: 20px;
}

#leftalign {
text-align:left;
}

/*chao garden*/
.gardens img {
width: 100%;
}

.gardenbanner {
width: 100%;
}

#cb {
height: 300px;
}

#chaobig{
max-height: 300px;
max-width: 300px;
}

.doll {
max-width: 100%;
}

/*footer area*/
footer{
  padding-top: 10px;
  margin: auto;
}
#tldecor{
  display: none;
}

#trdecor{
  display: none;
}}

/*pc version*/
@media (min-width: 900px) {
body{
  background-color: var(--bgcolor);
  background-image: var(--bgimg);
  background-size: cover;
  margin: 0px;
  padding: 0px;
  overflow: auto;
  cursor: url('img/Cursor_pink3.gif'), pointer;
}

/*everything is contained in The Box. nothing escapes The Box. All is subject to The Box*/
#box {
  color: var(--txtcolor);
  width: 75%;
  margin: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

#boxr {
  color: var(--txtcolor);
  margin: auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/*header area*/
header {
  margin-top: 10px;
  width: 100%;
}

header img {
  height: 130px;
  text-align: center;
  margin: auto;
  justify-content: center;
}

/*sidebar*/
.navbar {
  background-color: var(--boxes1);
  border-radius: var(--bradius);
  border-style: var(--bstyle);
  border-color: var(--bcolor);
  border-width: var(--bwidth);
  height: fit-content;
  width: 220px;
  padding: 1em;
  margin: auto;
}

.navbar ul{
  list-style-type: none;
  padding-left: 0;
  display:block;
  margin: auto;
  line-height:2.1em;
}

.navbar img {
  height: 19px;
}

.navbar a:hover img{
  height: 21px;
}

#lila {
  width:245px;
}

/*content box*/
main {
  background-color:var(--container);
  background-image: url("img/graph_paper-transparent.png");
  border-radius: var(--bradius);
  border-style: var(--bstyle);
  border-color: var(--bcolor);
  border-width: var(--bwidth);
  padding-bottom: var(--padding);
  position: relative;
  flex: 1;
}

#border-r {
  background-color:var(--container);
  background-image: url("img/graph_paper-transparent.png");
  border-radius: var(--bradius);
  border-style: var(--bstyle);
  border-color: var(--bcolor);
  border-width: var(--bwidth);
  padding-bottom: var(--padding);
  position: relative;
  top: 100px;
  width: 50%;
}

#container{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;

}

#container-r{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;

}

#content {
  height: 650px;
  padding: 20px; 
  flex: 1;
  overflow: auto;
}

#contentr {
  max-height: 650px;
  padding: 20px; 
  flex: 1;
  overflow: auto;
}


#pagecontent {
  height: 650px;
  padding: 20px 50px 0px 50px; 
  flex: 1;
  overflow: auto;
}

#gallery1 {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: .30rem .70rem;
}

#gallery1 img {
height: 205px;
max-width:300px;
object-fit:cover;
border-radius: 10px;
}

#gallery1 a:hover img {
outline: 2px solid var(--bcolor);
}

#gallery2 {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: .30rem .70rem;
}

#gallery2 img {
height: 205px;
max-width:300px;
object-fit:cover;
border-radius: 10px;
}

#gallery2 a:hover img {
outline: 2px solid var(--bcolor);
}

#gallery3 {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: .30rem .70rem;
}

#gallery3 img {
height: 212px;
height: 205px;
max-width:300px;
object-fit:cover;
border-radius: 10px;
}

#gallery3 a:hover img {
outline: 2px solid var(--bcolor);
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .30rem .70rem;
  }
  
  .gallery a:hover img {
  outline: 2px solid var(--bcolor);
  }
  
.galthumb {
    height: 205px;
    max-width: 250px;
    border-radius: 10px;
    object-fit: cover;
    background-color: #fff;
}

.expand {
    /* Default to hidden */
        display: none;
    /* Overlay entire screen */
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    /* A bit of padding around image */
        padding: 1em;
    /* Translucent background */
        background: var(--overlay);
    }

    /* Unhide the lightbox when it's the target */
    .expand:target {
        display: block;
    }

    .expand img {
    /* Full width and height */
        max-height: 600px !important;
        max-width: 600px !important;
        display: block;
        margin: auto;
        margin-top: 50;
        border: 10px solid #fff;
        background-color: #fff;
    }

    .expand a:hover img {
      outline: 0px solid;
    }

    .fullview {
    /* Default to hidden */
        display: none;
    /* Overlay entire screen */
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    /* Translucent background */
        background: var(--overlay);
        overflow-y: auto;
    }

    /* Unhide the lightbox when it's the target */
    .fullview:target {
        display: block;
    }

    .fullview img {
    /* Full width and height */
        display: block;
        margin: auto;
        padding: 10px;
        border: 1px solid #ddd;
        background: #fff;
        max-width: 100%;
        position: relative;
        top: 20px;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .fullview a:hover img {
      outline: 0px solid;
    }

    .meta { 
        text-align: center;
        margin: auto;
        margin-top: 5px;
        width: 700px;  
        background-color: #511579;
        border-radius: 15px; 
    }

    .desc {  
        padding: 10px;
        color: white;
    }

    .desc a {
        color: var(--container);
    }

    .desc a:active {
        color: rgb(119, 216, 255);
    }

.archive {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}


#thumblayout {
  display: flex;
  flex-wrap: wrap;
  overflow-y: auto;
  margin: auto;
  justify-content: center;
  width: 100%;
  gap: 2px;
  }

  #thumblayout img {
    border-radius: 10px;
  }

  #thumblayout a:hover img {
    outline: 3px solid rgb(255, 238, 250);
  }

  #thumblayout a img {
    outline: 3px solid var(--bcolor);
    }

.subtitle1 {
  height: 28px;
  padding: var(--padding);
}

#about img {
  display: inline;
  float: right;
  padding-left: 15px;
  width: 300px;
}
#about p {
  text-align: left;
}

#about ul {
  list-style: none;
}

#about li {
  text-align: left;
}


/*catgirl shrine*/
#catgirls {
display: inline;
text-align: left;
}

#catgirls img {
float: left;    
margin: 0 15px 15px 0;
overflow: auto;
width: 200px;
}

#portclear{
clear: both;
}

#portclear p {
font-size: 20px;
}

#leftalign {
text-align:left;
}

/*chao garden*/
.doll {
height: 375px;
}

.gardens img {
width: 55%;
}

.gardenbanner {
max-width: 80%;
}

#cb {
height: 350px;
}

#chaobig{
max-height: 350px;
}
}
/*!
By André Rinas, www.andrerinas.de
Documentation, www.simplelightbox.de
Available for use under the MIT License
Version 2.10.3
*/
body.hidden-scroll {
  overflow: hidden; }

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #fff;
  display: none;
  z-index: 1035; }

.sl-wrapper {
  z-index: 1040;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: fixed; }
  .sl-wrapper * {
    box-sizing: border-box; }
  .sl-wrapper button {
    border: 0 none;
    background: transparent;
    font-size: 28px;
    padding: 0;
    cursor: pointer; }
    .sl-wrapper button:hover {
      opacity: 0.7; }
  .sl-wrapper .sl-close {
    display: none;
    position: fixed;
    right: 30px;
    top: 30px;
    z-index: 10060;
    margin-top: -14px;
    margin-right: -14px;
    height: 44px;
    width: 44px;
    line-height: 44px;
    font-family: Arial, Baskerville, monospace;
    color: #000;
    font-size: 3rem; }
  .sl-wrapper .sl-counter {
    display: none;
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 1060;
    color: #000;
    font-size: 1rem; }
  .sl-wrapper .sl-navigation {
    width: 100%;
    display: none; }
    .sl-wrapper .sl-navigation button {
      position: fixed;
      top: 50%;
      margin-top: -22px;
      height: 44px;
      width: 22px;
      line-height: 44px;
      text-align: center;
      display: block;
      z-index: 10060;
      font-family: Arial, Baskerville, monospace;
      color: #000; }
      .sl-wrapper .sl-navigation button.sl-next {
        right: 5px;
        font-size: 2rem; }
      .sl-wrapper .sl-navigation button.sl-prev {
        left: 5px;
        font-size: 2rem; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 10px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 10px;
            font-size: 3rem; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-navigation button {
          width: 44px; }
          .sl-wrapper .sl-navigation button.sl-next {
            right: 20px;
            font-size: 3rem; }
          .sl-wrapper .sl-navigation button.sl-prev {
            left: 20px;
            font-size: 3rem; } }
  .sl-wrapper.sl-dir-rtl .sl-navigation {
    direction: ltr; }
  .sl-wrapper .sl-image {
    position: fixed;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 10000; }
    .sl-wrapper .sl-image img {
      margin: 0;
      padding: 0;
      display: block;
      border: 0 none;
      width: 100%;
      height: auto; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image img {
          border: 0 none; } }
    .sl-wrapper .sl-image iframe {
      background: #000;
      border: 0 none; }
      @media (min-width: 35.5em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
      @media (min-width: 50em) {
        .sl-wrapper .sl-image iframe {
          border: 0 none; } }
    .sl-wrapper .sl-image .sl-caption {
      display: none;
      padding: 10px;
      color: #fff;
      background: rgba(0, 0, 0, 0.8);
      font-size: 1rem;
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-top {
        bottom: auto;
        top: 0; }
      .sl-wrapper .sl-image .sl-caption.pos-outside {
        bottom: auto; }
    .sl-wrapper .sl-image .sl-download {
      display: none;
      position: absolute;
      bottom: 5px;
      right: 5px;
      color: #000;
      z-index: 1060; }

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 1007;
  -webkit-animation: pulsate 1s ease-out infinite;
  -moz-animation: pulsate 1s ease-out infinite;
  -ms-animation: pulsate 1s ease-out infinite;
  -o-animation: pulsate 1s ease-out infinite;
  animation: pulsate 1s ease-out infinite; }

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

.sl-transition {
  transition: -moz-transform ease 200ms;
  transition: -ms-transform ease 200ms;
  transition: -o-transform ease 200ms;
  transition: -webkit-transform ease 200ms;
  transition: transform ease 200ms; }

@-webkit-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-moz-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-o-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }

@-ms-keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0.0; }
  50% {
    opacity: 1; }
  100% {
    transform: scale(1.2);
    opacity: 0; } }
