/*TAKE A LITTLE PEEKSIE BUT NO PROMISES THAT ANY OF THIS IS GOOD!*/
:root {
    --palepink: #fff7f8;
    --bg: #fbd2d3;
    --dusty: #7f6969;
    --pink: #f7c9c8;
    --babypink: #FFE4E1;
    --font: #aa6363;
    --bg-image: url('/images/bg/gamergorl\ bg.png');
    --magenta: #b24270;
    --dark: #1b1a1a;
    --cherry: #AC1E44;
    --mauve: #ffd6de;
    --hotpink: #B81D5B;
    /*century gothic*/
  }
  
  body {
      font-family: Nunito;
      color: var(--hotpink);
      background-image: var(--bg-image);
      background-color: var(--palepink);
      background-size: 300px;
      margin: 0;
    }
  
    h1, h2, h3, h4 {
      font-family: "Tiny5", 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');
    }
  
  /*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;
  }
  
  /*main body area*/
  .boxcontainer {
      min-height: 100%;
      max-width: 1000px; 
      min-width: 900px;
      background-image: url('/images/bg/zeldapeach_Rotferkel.png');
      background-size: 100px;
      margin: auto;
    
      border-right: 45px solid transparent;
      border-left: 45px solid transparent;
      border-top: none;
      border-image: url('/images/borders/black_lace_hillhouse.png') 55 round;
      border-image-outset: 1;
      
        }
  
    .boxcontainer a {
        color: var(--hotpink);
        font-weight: bold;
      }

      @media only screen and (max-width:750px){
        .boxcontainer {
          min-width: 500px;
        }
    }

    #inner {
      min-height: 105vh;
      background-color: var(--bg);
      border-left: 1px var(--hotpink) solid;
      border-right: 1px var(--hotpink) solid;
      padding: 25px;
    }

    #containerwrap { /*i'm crazy, this is to help center the grid*/
      display: flex;
    }

    .gridcontainer {
      display: grid;
      gap: 50px;
      grid-template-columns: auto auto auto;
      padding: 5px;
      font-family: 'Tiny5', serif;
      font-size: 24px;
      align-items: center;
      justify-content: center;
    }
    
    @media screen and (max-width:600px){
      .gridcontainer {
        grid-template-columns: auto;
      }
    }

    .textbox {
      width: 100%;
      margin: 1%;
      padding: 5px;
      background-image: url('/images/bg/lapin\ oldweb\ fx\ pink\ grid.gif');
      background-size:25px;
      border: 4px solid;
      font-family: Rainyhearts;
      border-image: url('/images/borders/pixelborder_hotpink.png') 1 round;
      border-image-outset: 3px;

    }

    .textbox h3 {
      font-family: Rainyhearts;
    }

  
    .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(--palepink);
      text-shadow: var(--magenta) -2px 0 , var(--magenta) 0 2px , var(--magenta) 2px 0 , var(--magenta) 0 -2px ;
      text-align: center;
      font-family: Tiny5, serif;
      background-image: url('/images/bg/cat1.png');
      background-size: 200px;
      border: 15px solid var(--hotpink);
      border-image: url('/images/borders/pixelborder_hotpink.png')3  round;
      border-radius: 10px;
      border-image-outset: 3px;
      image-rendering: pixelated;
    }

   #header h1 {
       /*animation: float 1.5s linear infinite;*/
      font-family: 'Tiny5';
    }

    @media only screen and (max-width:600px){
      #header {
          font-size: 24px;
      }
    }
  
    .center {
      text-align: center;
    }
  
    button {
      border: 4px solid var(--hotpink);
      border-image: url('/images/borders/pixelborder_hotpink.png') 1 round;
      border-radius: 14px;
      font-family: 'Tiny5';
      background-color: var(--palepink);
      font-size: 24px;
      font-weight: bold;
      color: var(--hotpink);
      cursor: url("/cursors/heartclick.gif"), auto;
      margin: 0.5%;
      text-decoration: none;
    }

    button a {
      text-decoration: none;
    }

    button a:hover {
      color: var(--palepink);
    }
  
    button:hover{
      border-image: url('/images/borders/pixelborder_hotpink.png') 1 round;
      background-color: var(--hotpink);
      color: var(--palepink);
    }

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: var(--palepink);
      min-width: 160px;
      border: 4px solid var(--hotpink);
      border-image: url('/images/borders/pixelborder_hotpink.png') 1 round;
      border-radius: 14px;
      z-index: 1;
      font-family: 'Tiny5';
    }
    
    .dropdown-content a {
      padding: 5px 5px;
      text-decoration: none;
      display: block;
    }
    
    .dropdown-content a:hover {
      color: var(--palepink);
      background-color: var(--magenta)
    }
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
    
   
    /*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(--hotpink) 2px 2px;
    }
  
    .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;
    }
  

    /*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: Rainyhearts;
    src: url('/fonts/rainyhearts.ttf');
}

  
  @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;
  }
  
  .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;
  }

  .tiny5-regular {
    font-family: "Tiny5", 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: 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);
   }

   .buttonbox img {
        vertical-align: middle;
   }
  
   /*Table styling*/
   table, th, td {
    text-align: center;
    width: 100%;
    border: 1px solid;
    padding: 10px;
    border-collapse: collapse; 
    font-family: 'Rainyhearts';
    font-size: 24px;
  }

  table h3 {
    font-family: 'Rainyhearts';
  }

  tr:first-child {
    background-image: url('/images/bg/lapin\ oldweb\ fx\ pink\ grid.gif');
  }

  tr:nth-child(even) {
    background-color: #FFE4E1;
  }

  tr:nth-child(odd) {
    background-color: var(--palepink);
  }

   table summary {
    list-style-image: url('/images/icons/pinkright\ arrow.gif');
    list-style-position: inside;
    text-align: center;
    /*list-style-image: url('/images/icons/arrow_pink_right.gif');*/
   }

   details {
    text-align: left;
   }