/*TAKE A LITTLE PEEKSIE BUT NO PROMISES THAT ANY OF THIS IS GOOD!*/
:root {
    --palepink: #fff7f8;
    --pale: #f4e2e9;
    --bg: #f2dada;
    --pink: #f7c9c8;
    --dusty: #7f6969; 
    --font: #aa6363;
    --bg-image: url('/images/bg/gamer_palepink_demonicpedigree.PNG');
    --magenta: #b24270;
    --dark: #1b1a1a;
    --cherry: #AC1E44;
    /*century gothic*/
  }
  
  
  body {
      font-family: Nunito;
      color: var(--font);
      background-image: var(--bg-image);
      background-color: var(--palepink);
      background-size: 261px;
    }
  
    h1, h2, h3, h4 {
      font-family: "Jacquard 24", sans-serif;
      margin: 0px;
    }

    h2 {
      font-size: 42px;
    }

    h3 {
      font-size: 38px;
    }
  
    p a:hover {
    color: var(--pink);
    }
  
    hr {
      border: 0;
      height: 15px;
      background:url('/images/dividers/gothic1.png');
    }
    
  s
  /*Big container that wraps everything up, excuse the silly name*/
  #tupperware {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    height: 100vh;
    margin-top: -20px;
  }
  
  /*main body area*/
  .boxcontainer {
      min-height: 100%;
      max-width: 950px;
      min-width: 800px;
      background-color: var(--palepink);
      
      color: var(--font);
      overflow: auto;
      padding: 0%;
      padding-top: 0%;
      margin: auto;
      margin-top: -9px;
      margin-bottom: -9px;
  
      border-right: 50px solid transparent;
      border-left: 50px solid transparent;
      border-top: none;
      border-image: url('/images/borders/black_lace_hillhouse.png') 55 round;
      border-image-outset: 1;
      border-bottom: 2px solid black;
        }
  
    .boxcontainer a {
        color: var(--font);
        font-weight: bold;
      }

      @media only screen and (max-width:600px){
        .boxcontainer {
          min-width: 100%;
        }
    }

    .innercontainer {
      border: 1px solid black;
      min-height: 100vh;
      padding: 25px;
    }

    .banner {
      text-align: center;
      background-image: url('/art/2025/Clover\ Shojo.webp');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 25% 38%;
      min-height: 100px;
      margin-top: -20px;
      border: 1px solid;
      border-radius: 5px;
      position: relative;
    }

    .title {
      font-family: 'UnifrakturMaguntia';
      user-select: none;
      color: var(--dark);
      text-shadow: var(--palepink) -2px 0 , var(--palepink) 0 2px , var(--palepink) 2px 0 , var(--palepink) 0 -2px ;
    }

    .nav {
      border: 1px solid ;
      border-radius: 5px;
      width: 100%;
      margin-top: 1%;
      padding: 0.25%;
      font-family: 'Jacquard 24';
      font-weight: bold;
      font-size: 28px;
      text-align: center;
      background-image: url('/images/bg/grey_polkahearts.jpg');
      background-size: 150px;
    }

    .nav a {
      text-decoration: none;
      color: var(--dark);
      text-shadow: var(--palepink) -2px 0 , var(--palepink) 0 2px , var(--palepink) 2px 0 , var(--palepink) 0 -2px ;
    }

    .nav a:hover {
      text-decoration: none;
      color: var(--palepink);
      text-shadow: var(--magenta) -2px 0 , var(--magenta) 0 2px , var(--magenta) 2px 0 , var(--magenta) 0 -2px ;
    }

    .nav img {
      vertical-align: middle;
    }
  
    /*the little doll sleepign on the page (desktop only*/
    .clover {
          z-index: 10;
          margin: auto;
          position: absolute;
          transform: translate(-400px);
      }
      .clover img {
          max-width: 400px;
      }
  
      /*this hides the desktop version of the clover doll*/
      @media only screen and (max-width:1023px){
          .clover {
            display: none;
          }
      }
  
    /*Mobile/Small Screen Clover*/
    .mobileclovercontainer {
      display: flex;
      margin-bottom: 0%;
      }
  
    .mobileclover {
      z-index: 10;
      margin: auto;
      display: flex;
      margin-bottom: 0%;
      }
    .mobileclover img {
      max-width: 350px;
      margin-bottom: 0%;
      }
  
      /*this hides the mobile version of the clover doll on desktop, obsolete*/
  @media only screen and (min-width:1023px){
    .mobileclover {
      display: none;
    }
    }
  
    .collectionbox{
      border: 1px solid;
      border-radius: 15px;
      padding: 5px;
      max-height: 200px;
      overflow: auto;
      text-align: center;
      margin: auto;
  }
  
    .row:after {
      display: grid;
      clear: both;
    }   
  
    .column {
      float: left;
      width: 50%;
      padding: 5px;
    }
  
      .text {
          margin-left: 25%;
          margin-right: 25%;
          font-size: 18px;
      }
  
      @media only screen and (max-width:600px){
          .text {
              margin-left: 3px;
              margin-right: 3px;
          }
        }
  
    #header {
      font-size: 40px;
      color: var(--pink);
      text-shadow: var(--dusty) 2px 1px 2px;
      text-align: center;
      padding-top: 30px;
      font-family: UnifrakturMaguntia, serif;
      left: 200px;
      margin-top: -50px;
    }
  
    @media only screen and (max-width:600px){
      #header {
          font-size: 24px;
      }
    }
  
    .center {
      text-align: center;
    }
  
    .button {
      background-color: #F5F5F0;
      border: 1px var(--font) solid;
      border-radius: 4px;
      font-family: Nunito;
      font-weight: bold;
      font-size: 16px;
      color: var(--font);
      padding: 5px;
      margin: 0.5%;
      text-decoration: none;
      line-height: 40px;
    }
  
    .button:hover{
      background-color: var(--font);
      color: #F5F5F0;
      border: 1px #F5F5F0 solid;
    }
   
    /*GETS RID OF THAT ANNOYING TRIANGLE ON READ MORE*/
    details > summary {
      list-style: none;
    }
    details > summary::-webkit-details-marker {
      display: none;
    }
    /*...*/
  
    #enter {
      font-family: 'Jacquard 24';
      font-size: 55px;
      letter-spacing: 12px;
      color: var(--pink);
      text-decoration: none;
    }
  
    #enter:hover {
      animation: float 1.5s linear infinite;
      color: var(--pink);
      text-shadow: var(--dusty) 2px 2px;
      text-decoration: none;
    }
  
    #enter a{
      color: var(--pink);
      text-shadow: var(--dusty) 2px 2px;
      text-decoration: none;
    }
  
    #enter a:hover {
      animation: float 1.5s linear infinite;
      color:#ffb6c1;
      text-shadow: var(--font) 2px 2px;
    }
  
    heart {
      background-image: url('/images/icons/black\ heart\ bullet\ by\ outspoken-kate\ via\ salvaged.nu.gif');
      background-repeat: no-repeat;
      height: 8px;
    }
  
    .hovertext {
      margin-right: 1px;
      transition: margin 0.2s ease-in-out;
      animation: float 1.5s linear infinite;
    }
  
  /*ANIMATIONS*/
  
  @keyframes float {
    0% {
      transform: translatey(0px);
      }
    50% {
      transform: translatey(-6px);
    }
    100% {
      transform: translatey(0px);
    }
    }
  
  .floatingtext {
  animation: float 1.5s linear infinite;
  }
  
    .blurred {
    transition: 0.25s filter linear;
    -webkit-transition: 0.25s filter linear;
    -moz-transition: 0.25s filter linear;
    -o-transition: 0.25s filter linear;
    filter: blur(10px);
    }
    
    .blurred:hover {
      filter: blur(0);
    }
  
    /* ===== Scrollbar CSS ===== */
  
    /* Chrome, Edge, and Safari */
    *::-webkit-scrollbar {
      width: 16px;
    }
  
    *::-webkit-scrollbar-track {
      background: #ffffff;
    }
  
    *::-webkit-scrollbar-thumb {
      background-color: #f7e8eb;
      border-radius: 10px;
      border: 3px outset #e5d7d7;
    }
  
    @media only screen and (max-width:900px){

      .navbar {
        margin: 0%;
        margin-top: 2%;
        margin-bottom: 0%;
      }
      .footer{ 
        margin: 5%;
        margin-top: 0%;
        margin-bottom: 2%;
    }
    }
    /*CURSORS*/
    body {
      cursor: url("/cursors/pinkcowstunning.png"), auto;
    }
    a {
      cursor: url("/cursors/heartclick.gif"), auto;
    }

  
    /*TEXT SELECTION*/
    ::-moz-selection { /* Code for Firefox */
      color: var(--palepink);
      background: var(--magenta);
    }
    
    ::selection {
      color: var(--palepink);
      background: var(--magenta);
    }
  
  /* === FONTS ===*/
    @font-face {
      font-family: Nunito;
      src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
  }
  
  @font-face {
      font-family: Nunito;
      src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
      font-weight: bold;
  }
  
  @font-face {
      font-family: Nunito;
      src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
      font-style: italic;
  }
  
  @font-face {
      font-family: Nunito;
      src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
      font-style: italic;
      font-weight: bold;
  }
  
  @font-face {
      font-family: Strawberry Muffins Demo;
      src: url('/fonts/Strawberry\ Muffins\ Demo.ttf');
  }
  
  @font-face {
      font-family: Valentine Cute;
      src: url('/fonts/Valentine Cute.ttf');
  }
  
  @font-face {
      font-family: better together;
      src: url('https://dl.dropbox.com/s/cs0id1abfa9kbpm/Better%20Together%20Spaced.ttf');
      font-size: 100px;
  }

  @font-face {
    font-family: starlight;
    src: url('/fonts/starlight.ttf');
    font-size: 100px;
}

@font-face {
  font-family: 'Rainy Hearts';
  src: url('/fonts/rainyhearts.ttf');
  font-size: 100px;
}
  
  .unifrakturmaguntia-regular {
    font-family: "UnifrakturMaguntia", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .jacquard-24-regular {
    font-family: "Jacquard 24", serif;
    font-weight: 400;
    font-style: normal;
  }

  /*Decoration for the button that says 'Go Home' on every page */
  .buttonbox {
    border: 1px dashed black;
    border-radius: 5px;
    padding: 7px;
    margin-top:20px;
    margin-left: auto;
    margin-right: auto;
    background-image:url('/images/bg/polkadots_lightpink_jasminefeng.png');
    overflow: auto;
    text-align: center;
    width: max-content;
    font-family: 'Jacquard 24';
    font-weight: bold;
    font-size: 28px;
    }

  .buttonbox a {
    text-decoration: none;
    color: var(--dark);
   }
   .buttonbox a:hover {
    color: var(--pink);
    text-shadow: var(--magenta) -2px 0 , var(--magenta) 0 2px , var(--magenta) 2px 0 , var(--magenta) 0 -2px ;
   }

   .buttonbox img {
     vertical-align: middle;
   }
  