@import url('https://fonts.bunny.net/css2?family=Amiko');
@import url('https://fonts.bunny.net/css2?family=Coustard');

h1, h3, h4 {
     font-family: 'Coustard';
     text-shadow: 1px 1px 1px #fff;
}
html, a {
     cursor: url('/assets/cursors/pinkbow_big.png'), auto;
}
body {
     background: #c0bcbd url('/assets/backgrounds/burberry.gif') repeat;
     line-height: 1.4;
     font-family: 'Amiko';
     font-size: 13px;
     text-align: justify;
     letter-spacing: 1px;
     color: #4e4747;
}

::-webkit-scrollbar-thumb {
background-color: #d89ea5;  
border-radius: 0px;
border:1px solid #999;
}
::-webkit-scrollbar {
width: 9px; height: 4px; 
background: #fff;
}
b {
     color: #7c4b56;
}
i {
     color: #bca1a7;
}
.quote-cite {
     display: block;
     margin-top: 0.75em;
     font-size: 0.9em;
     text-align: right;
}

/*..........................

      links

..........................*/

a{
    text-decoration: none;
    color: #c83349;
}
a:visited{
    color: #383434;
}
a:hover{
    font-style: italic;
}
a:active{
    font-style: italic;
}
main a{
     background-color: #cab29a;
     color: #3a3837;
}

/*..........................

     lists styling

..........................*/

ul{
     padding-left: 0;
}
li{
     list-style-type: none;
}
li::before{
     margin-right: 1ch;
}
main li{
     margin: 0.5em 0;
}
main li::before{
     content: "\2661";
}

/*..........................

      main container

..........................*/
 
#bigcontainer {
      display: flex;
      flex-flow: row nowrap;
      align-items: flex-start;
      margin: 20px auto;
      width: 90svw;
      min-height: 90svh;
      gap: 2em; 
 }
.sidebar, main {
     background-color: #ffffff;
     box-sizing: border-box;
     padding: 1em;
     border-radius: 1em;
     box-shadow: 0.25em 0.25em 0.5em rgba(0,0,0,0.2);
     border: 3px solid #815c62;
}
main > div {
     border-radius: 5px;
     padding: 5px;
     margin: 5px;
     margin-bottom: 10px;
     color: #4e4747;
     overflow-y: scroll;
     max-height: 90svh;
}
.sidebar {
      width: 19svw;
      color: #636262;
      position: sticky;
      top: 1em;
      text-align: left;
 }
.sidebar p{
     text-align: center;
     font-size: 0.7em;
 }
.sidebar ul{
     margin: 0;
 }
.sidebar li::before{
      content: "\2661";
 }
#links {
     display: flex;
     justify-content: center;
     padding: 1em;
     padding-top: 0.75em;
     border-bottom-left-radius: 0.5em;
     border-bottom-right-radius: 0.5em;
     font-family: 'Coustard';
     font-size: 1.1em;
}
.title {
     background:#685243; 
     font: 14px monospace; 
     letter-spacing:3px;
     color:#ffffff;
     padding:2px;
     padding-left:4px;
     margin-bottom:8px;
     line-height: 1.9;
     text-align: center;
}
.title:first-of-type {
     padding: 1em;
     padding-top: 0.75em;
     background: #685243;
     border-top-left-radius: 0.5em;
     border-top-right-radius: 0.5em;
}
.sidebar img {
     max-width: 100%;
     align-content: center;
}
main {
      flex: 2;
      padding: 1em 1em;
}
h1 {
     text-align: center;
     padding: 0 1em;
     margin: 0 auto;
     background-color: #ffffff;
     text-decoration: underline;
}
h2 {
  background: #685243;
  box-shadow: 2px 2px 2px #ffffff;
  color: #f5f2f2;
  text-align: left;
  font-size: 12px;
  padding: 2px;
}
main p {
     margin: 0.75em 0 1em;
}
main h2 {
     margin: 1.6em 0 0.75em;
}
main h2:first-of-type {
     margin-top: 1em;
}
.archive-note {
     margin: 0.75em 0;
     text-align: left;
     font-size: 0.9em;
}
.centering {
     text-align: center;
}
main img, main iframe, main video {
     max-width: 100%;
     max-height: 400px;
     height: auto;
     width: auto;
}
main iframe, main video {
     display: block;
     margin: 0.75em auto;
}
main blockquote p {
     margin: 0;
}
.archive-caption {
     margin-top: 0.35em;
     font-size: 0.9em;
     text-align: center;
     color: #636262;
}
.archive-figure {
     margin: 1em auto;
     text-align: center;
}

.archive-figure img {
     max-width: 100%;
     height: auto;
}
.archive-figure figcaption {
     max-width: 85ch;
     margin: 0.5em auto 0;
     font-size: 0.9em;
     text-align: center;
     color: #636262;
}

/*..........................

      extra things

..........................*/

 blockquote {
     margin: 0px 50px 0px 50px;
     padding: 30px 30px 30px 50px;
     background-color: #f9f9f9;
     border: 1px solid #ccc;
     border-radius: 6px;
     box-shadow: 1px 1px 1px #ccc;
}
 .spoiler{
     background-color: black;
     color: transparent;
     user-select: none;
}
 .spoiler:hover{
     background-color: inherit;
     color: inherit;
}
 .gallery {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
}
 .gallery img {
     height: 150px;
     border: 2px solid black;
     margin: 2px;
}

/*..........................

      mobile girls

..........................*/


@media (max-width: 1024px) {

  /* stack */

  #bigcontainer {
    flex-direction: column;
    width: 95vw;
    gap: 1em;
  }

  .sidebar {
    width: 100%;
    position: static;
    text-align: center;
  }

  .sidebar ul {
    padding: 0;
  }

  .sidebar li {
    display: inline-block;
    margin: 0.25em 0.5em;
  }

  main {
    width: 100%;
    padding: 1em;
  }

  /* remove scroll axis */

  main > div {
    max-height: none;
    overflow-y: visible;
  }

  main img, main iframe, main video {
  max-width: 100%;
  height: auto;
  display: block;
}

  body {
    font-size: 13px;
    letter-spacing: 0.5px;
  }

  h1 {
    text-align: center;
    padding: 0.5em;
  }

  h2 {
    font-size: 13px;
    text-align: center;
  }

  blockquote {
    margin: 1em;
    padding: 1em;
  }
.gallery img {
  height: 150px;
  width: auto;
  border: 2px solid black;
  margin: 2px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .gallery img {
    height: auto;
    max-height: 160px;
    max-width: min(45%, 180px);
    object-fit: contain;
  }
}

@media (max-width: 520px) {
  .gallery img {
    max-width: 95%;
    max-height: none;
  }
}
