/*TAKE A LITTLE PEEKSIE BUT NO PROMISES THAT ANY OF THIS IS GOOD!*/
:root {
    --palepink: #fff7f8;
    --pale: #f4e2e9;
    --bg: #FFEEE8;
    --pink: #ffdcde;
    --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;
      list-style-image: url('/images/icons/black\ heart\ bullet\ by\ outspoken-kate\ via\ salvaged.nu.gif') ;
    }

    footer {
      font-family: Mali;
      color: var(--cherry);
      text-align: center;
      background-color: var(--bg);
      border: 1px solid var(--cherry);
      border-radius: 5px;
    }
  
    h1, h2, h3, h4 {
      font-family: "Jacquard 24", sans-serif;
    }

    h1 {
      font-size: 64px;
    }

    h2 {
      font-size: 42px;
    }

    h3 {
      font-size: 38px;
    }

    h4 {
      font-size: 28px;
    }
  
    p a:hover {
    color: var(--pink);
    }
  
    hr {
      border:0;
      height:15px;
      background:url('/images/dividers/strawberry2.png');
    }
  
  /*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: -10px;
  }
  
  /*main body area*/
  .boxcontainer {
      min-height: 100%;
      max-width: 950px;
      min-width: 950px;
      background-image: url('/images/bg/heartquilt_babypink.png');
      background-size: 150px;
      
      overflow: auto;
      padding: 0%;
      padding-top: 0%;
      margin: auto;
  
      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{
        font-weight: bold;
      }

      @media only screen and (max-width:750px){
        .boxcontainer {
          min-width: 100%;
          overflow-x: hidden;
        }
        .innercontainer {
            min-width: 100%;
        }
         .intro {
        max-width: 94%;
         }
         .hovertext {
          display: none;
        }
      }
    

    .innercontainer {
      border: 1px solid black;
      min-height: 100vh;
      overflow-x: hidden;
      background-color: var(--pink);
    }
    
    .banner {
      text-align: center;
      background-image: url('/art/2025/Clover\ Shojo.webp');
      background-repeat: no-repeat;
      background-size: 1300px;
      background-position: 40% 35%;
      min-height: 150px;
      max-height: 150px;
      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 ;
      position: relative;
      left: 200px;
    }
    
    .row:after {
      display: grid;
      clear: both;
    }   
  
    .column {
      float: left;
      width: 49%;
      padding: 5px;
    }

    #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;
      }
      .cloveryap {
        display: none;
      }
      .speech-bubble {
        width: 99%;
      }
    }
  
    .center {
      text-align: center;
      margin: auto;
    }


/*FLEX settings (sets navbar position and position of rest of page inside container)*/
.flexcontainer{
  display: flex;
  flex-direction: row;
  margin: 5px;
  gap: 5px;
}

@media screen and (max-width: 600px){
  .flexcontainer {
    flex-direction: column;
  }

}

.nav {
    background-color: var(--bg);
    flex: 25%;
    border: 1px solid var(--magenta);
    text-align: center;
    border-radius: 5px;
    order: 1;
  }

  .nav a {
    text-decoration: none;
    color: var(--cherry);
  }

  .nav a:hover {
    color: var(--palepink);
    text-shadow: var(--cherry) -1px 0 , var(--cherry) 0 1px , var(--cherry) 1px 0 , var(--cherry) 0 -1px ;
  }

.nav h3, h4 {
  color: var(--dark);
  text-shadow: var(--palepink) -2px 0 , var(--palepink) 0 2px , var(--palepink) 2px 0 , var(--palepink) 0 -2px ;
  margin: 0px;
  margin-left: 15px;
  text-align: left
}

.nav h4:hover {
  color: var(--cherry);
}

.nav ul, li {
  margin: 0px;
  list-style-type: none;
  text-align: left;
}

.meat {
  flex: 75%;
  order: 2;
}

.meat a {
  color: var(--cherry);
  text-decoration: none;
}

.meat a:hover {
  color: var(--bg);
  text-shadow: var(--cherry) -1px 0 , var(--cherry) 0 1px , var(--cherry) 1px 0 , var(--cherry) 0 -1px ;
}

/*GRID SETTINGS*/
.gridcontainer {
    display: grid;
    gap: 20px;
    grid-template-columns:  50% 50%;
    padding: 20px;
    
  }

.gridcontainer div {  
    z-index: 2;
    background-size: 100px;
    border: 10px solid transparent;
    border-image: url('/images/borders/pink\ lace\ 1.png') 12 round;
    border-image-outset: 1;
    padding: 20px;
    color: var(--cherry);
    text-align: center;
    max-width: 90%;
    background-color: var(--bg);
    padding: 0px;
    background-size: 100px;
    color: var(--magenta);
  }

  @media screen and (max-width:600px){
    .gridcontainer {
      grid-template-columns: auto;
    }

    .gridcontainer div {
      max-width: 90vw;
      margin: auto;
    }

    .title {
      max-width: 90vw;
      text-align: center;
    }
  }

  .intro {
    margin-top: 10px;
    margin-left: 10px;
    margin-bottom: 0px;
    
    border: 10px solid transparent;
    border-image: url('/images/borders/pink\ lace\ 1.png') 12 round;
    border-image-outset: 1;

    
    max-width: 50%;
    background-color: #FFEEE8;
    padding: 0px;
    background-size: 100px;
    color: var(--magenta);
  }

  .shoutbox {
    width: fit-content;
    padding: 0px;
    margin: auto;
    border-image: url('/images/borders/jasmine\ feng\ chatbox.png') 8 stretch;
    border-image-outset: 1;
    background-color: var(--bg);
    border: 10px solid transparent;
  }

  .shoutbox h3 {
    font-family: 'Valentine Cute';
    color: var(--cherry);
    text-shadow: -1px -1px 0 var(--palepink), 1px -1px 0 var(--palepink), -1px 1px 0 var(--palepink), 1px 1px 0 var(--palepink);
    font-size: 18px;
    margin: 0px;
    text-align: center;
  }

  .gameboy {
    scrollbar-color: #FFA2C4 #ACC8FF;
    scrollbar-width: thin;
  }

  .gameboycontainer h3 {
    font-family: rainyhearts;
    font-size: 18px;
    color: var(--cherry);
    margin: 0px;
    text-align: left;
  }

  .updates {
    overflow: auto;
    scrollbar-color: var(--cherry) var(--pink);
    scrollbar-width: thin;
    max-height: 225px;
    align-items: center;
    justify-content: center;
  }

  .updates h4 {
    font-family: 'Valentine Cute';
    font-size: 18px;
    color: var(--cherry);
    text-align: center;
    
  }

   
    /*GETS RID OF THAT ANNOYING TRIANGLE ON READ MORE*/
    details > summary {
      list-style: none;
    }
    details > summary::-webkit-details-marker {
      display: none;
    }
  
    .minecraft {
      background-color: var(--magenta);
      width: 100%;
    }

    .hovertext {
      
      font-family: Starlight;
      font-weight: bold;
      font-style: italic;
      font-size: 28px;
      color: #AC1E44;
      text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
    
      margin: auto;
      margin-right: 2%;
      padding: 0%;
      max-width: fit-content;
      
      /*position: absolute;
      right: 450px;
      top: 110px;*/

      transition: margin 0.2s ease-in-out;
      animation: float 1.5s linear infinite;
      rotate: -20deg;
      user-select: none;
    }
  
  /*ANIMATIONS*/
  
  @keyframes float {
    0% {
      transform: translatey(0px);
      }
    50% {
      transform: translatey(-6px);
    }
    100% {
      transform: translatey(0px);
    }
    }
  
  .floatingtext {
  animation: float 1.5s linear infinite;
  }

  /*outgoing links button effect*/
  .imagehover img:hover {
    transform: translate(0, -3px);
  }

/*STATUS CAFE*/

  .status {
    position: relative;
  }

  .cloveryap {
    position: absolute;
    left: 300px;
    top: -90px;
    z-index: 1;
  }

    #statuscafe {
        padding: .5em;
        color: var(--magenta);
    }

    #statuscafe a {
      color: var(--cherry);
    }

    #statuscafe a:hover {
      color: var(--palepink);
    }

    #statuscafe-username {
        margin-bottom: .5em;
        color: var(--magenta);
    }
    #statuscafe-content {
        margin: 0 1em 0.5em 1em;
    }

    .speech-bubble {
      margin-top: 0px;
      z-index: 2;
      margin: 15px;
      position: relative;
      background: var(--bg);
      border-radius: .4em;
      width: 50%;
      border: 1px solid var(--cherry);
    }
    
    .speech-bubble:after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 0;
      height: 0;
      border: 26px solid transparent;
      border-left-color: var(--bg);
      border-right: 0;
      border-bottom: 0;
      margin-top: -13px;
      margin-right: -26px;
    }
  
/* ===== 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;
    }
  

/*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;
  }

  @font-face {
    font-family: Mali;
    src: url('https://fonts.googleapis.com/css2?family=Mali')
  }