/*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/heartquilt_yellow.jpg');
    --magenta: #b24270;
    --dark: #1b1a1a;
    --cherry: #AC1E44;
    --palesunshine: #fff7e0;
    --cream: #ffece2;
    --glow: #ffbe5c;
    --sunflower: #ffd77b;
    --sunshine: #ffe9b6;
    --sunset: #ff87a3;
    /*century gothic*/
  }

  * {
    scrollbar-color: var(--glow) var(--sunshine);
    }

  *:hover {
    scrollbar-color: var(--glow) var(--sunshine);
    }

  /*CURSORS*/
  body {
    cursor: url("/cursors/angel\ heart\ cursor.png"), auto;
  }
  a {
    cursor: url("/cursors/heartclick.gif"), auto;
  }
   
  body {
      font-family: Mali;
      font-size: larger;
      color: var(--cherry);
      background-image: var(--bg-image);
      background-color: var(--palepink);
      background-size: 500px;
    }
  
  h1, h2, h3, h4 {
    font-family: Mali;
    color: var(--cherry);
    margin: 0%;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 24px;
  }
  
  
  hr {
    background-image: url('/images/dividers/sunflower\ divider.gif');
    height: 42px;
    border: none;
    object-fit: contain;
  }

  hr.strawberrydivider {
    background-image: url('/images/dividers/strawberry2.png');
    height: 16px;
    background-repeat: repeat-x;
  }

  hr.daisydivider {
    background-image: url('/images/misc/daisy_divider.gif');
    height: 25px;
  }

  footer {
    font-size: smaller;
    text-align: center;
    color: var(--font);
  }

  /*GETS RID OF THAT ANNOYING TRIANGLE ON READ MORE*/
  details > summary {
    list-style: none;
  }
  details > summary::-webkit-details-marker {
    display: none;
  }
  
  /*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 {
    padding-left: 50px;
    padding-right: 50px;

    max-width: 950px;
    min-width: 950px;

    border-right: 12px solid transparent;
    border-left: 12px solid transparent;
    border-top: none;
    border-image: url('/images/borders/cream\ lace.png') 7 round;
    border-image-outset: 1;
    border-bottom: 2px solid black;

    background-image: url('/images/bg/yellow\ gingham.jpg');
    background-size: 200px;
    }
  
    .boxcontainer a {
        color: var(--font);
        font-weight: bold;
      }

      @media only screen and (max-width:800px){
        .boxcontainer {
          min-width: 100%;
          }
        }
    /*inner content area*/
    .innercontainer {
      background-color: var(--palesunshine);
      border: 1px solid var(--cherry);
      min-height: 100vh;
      padding: 25px;
      color: var(--cherry);
    }

    /*Banner above all content*/
    .banner {
      margin-top: -4%;
      text-align: center;
      background-image: url('/images/banners/sunflowers_stevenuniverse.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: 50% 38%;
      min-height: 15px;
      max-height: 150px;
      border: 1px solid;
      border-radius: 5px;
      position: relative;
    }

    /*text inside banner*/
    .title {
      font-family: Depita;
      user-select: none;
      
      text-shadow: var(--sunset) -2px 0 , var(--sunset) 0 2px , var(--sunset) 2px 0 , var(--sunset) 0 -2px ;
      font-weight: 10;
    }

    .title h1 {
      color: var(--palesunshine);
      font-size: 102px;
      font-family: Depita;
    }

    @media only screen and (max-width:800px){
      .title h1 {
        font-size: 38px;
      }
    }



    .nav {
      border: 1px solid ;
      border-radius: 5px;
      width: 100%;
      margin-top: 1%;
      padding: 0.25%;
      font-family: Strawberry Muffins Demo;
      font-weight: bold;
      font-size: 28px;
      text-align: center;
      background-image: url('/images/bg/yellow\ gingham.jpg');
      background-size: 200px;
    }

    .nav a {
      text-decoration: none;
      color: var(--cherry);
      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;
    }

    

/* === NAV MENU THAT GOES TO DIFF PARTS OF PAGE*/
  .sectionnav {
    width: 100%;
    display: flex;
    justify-content: center;
    }

  .sectionnav ul {
    display: flex;
    }

  .sectionnav li {
    list-style-type: none;
    background-color: var(--sunflower);
    border: 1px solid var(--cherry);
    border-radius: 5px;
    width: fit-content;
    padding: 5px;
    margin: 5px;
    }

  .sectionnav a {
    color: var(--cherry);
    text-decoration: none;
    }

  .sectionnav li:hover {
    background-color: var(--sunshine);
    }

  /* === side elements === */

  /*deco at bottom of the scren*/
  #fence {
    position: fixed;
    bottom: 0%;
    width: 99%;
    height: 40px;
    background-size: contain;
    background-image: url('/images/dividers/strawberrypicketfence.png');
    background-repeat: repeat-x;
    padding-left: 0px;
    margin-top: -2px;
    z-index: -1;
  }
  
  #scrollTop {
    background: none;
    border: none;
    position: fixed;
    bottom: 5%;
    left: 17%;
    font-family: Mali;
    font-weight: bolder;
    color: var(--cherry);
    }

    #scrollTop img {
      max-width: 75px;
    }

    @media only screen and (max-width: 1000px) {
      #scrollTop img {
        display: none;
        }
        
      #scrollTop {
        display: none;
      }
        }

  #leftpagedoll {
    position: fixed;
    bottom: 2%;
    left: 0%;
  }

  #leftpagedoll img {
    max-width: 70%;
  }

  @media only screen and (max-width: 1000px) { 
  #leftpagedoll {
      display: none;
    }
  }

  #rightpagedoll {
    position: fixed;
    bottom: 0px;
    right: -4%;
  }

  #rightpagedoll img {
    max-width: 70%;
  }

  @media only screen and (max-width: 1200px) { 
    #rightpagedoll {
        display: none;
    }
  }

  /*deco at top of the scren*/
    #strawberry {
      position: fixed;
      top: 0px;
      width: 99%;
      height: 40px;
      background-size: contain;
      background-image: url('/images/dividers/strawberry1.png');
      background-repeat: repeat-x;
      padding-left: 0px;
      margin-top: -2px;
      z-index: -1;
    }

  /* === BODY ELEMENTS === */

  /*Centers images*/
  .centeriamge {
    display: flex;
    justify-content: center;
    margin: 0%;
  }

  .desc { /*controls personality and trivia*/
    background-color: var(--sunshine);
    padding: 16px;
    border-radius: 7px;
    padding: 5%;
    box-shadow: 0px 4px var(--glow);
  }

  /* Full body design and description */
  .desccontainer {
    display: grid;
    grid-template-columns: 25% 70%;
    column-gap: 20px;
    text-align: center;
    }

  @media screen and (max-width:500px){
    .desccontainer {
      grid-template-columns: auto;
      }

    .desccontainer div {
      max-width: 90vw;
      margin: auto;
      }
    }

    .flex {
      display: flex;
      width: 100%;
      gap: 20px; 
      margin: 1%;
    }

    .flex div {
      background-color: var(--sunshine);
      border-radius: 7px;
      padding: 2%;
      box-shadow: 0px 4px var(--glow);
      width: 50%;
      margin-bottom: 2%;
      text-align: center;
    }

    .flex ul {
      text-align: left;
    }

    .flex img {
      justify-content: center;
    }

    .flex p {
      background-color: var(--palesunshine);
      padding: 4%;
      border-radius: 7px;
    }

    .flex div.innie {
      background-color: var(--palesunshine);
      padding: 4%;
      border-radius: 7px;
      width: 90%;
      box-shadow: none;
    }

    .innie {
      background-color: var(--palesunshine);
      padding: 2%;
      border-radius: 7px;
      width: 90%;
      margin: auto;
    }

    .yamscontainer {
      max-height: 300px; 
    }

    .yams {
      overflow: auto;
      max-height: 250px;
    }
    


    @media screen and (max-width:800px){
      .flex {
        flex-direction: column;

      }

      .flex div {
        width: 95%;
        
      }

      .innie {
        
      }

      .yamscontainer {
        max-height: none;
      }

      .yams {
       
      }
    }
  /*SECTION HEADING*/
  .heading {
    display: flex;
    background-color: var(--sunshine);
    padding: 1%;
    border-radius: 7px;
    width: fit-content;
    margin: auto;
    box-shadow: 0px 4px var(--glow);
  }

  /* Portrait and quote element */
  .intro {
    display: grid;
    grid-template-columns: 40% 60%;
    column-gap: 10px;
    align-content: center;
    text-align: center;
    }

  .intro ul {
    line-height: 20px;
  }

  .intro li {
    line-height: 20px;
    text-align: left;
  }

  @media screen and (max-width:500px){
    .intro {
      grid-template-columns: auto;
      }

    .intro div {
      max-width: 90vw;
      margin: auto;
      }
    }

  /*Portrait of OC near top*/
  .portrait {
    max-width: 100%;
    min-height: 400px;
    max-height: 400px;
    vertical-align: middle;
    margin-bottom: 1%;
    background-image: url('/art/2025/Sunny\ portrait.webp');
    border-radius: 10px;
    border: 1px solid var(--dusty);
    filter: drop-shadow(0px 3px var(--dusty));
    background-position: 40% 20%;
    background-size:cover ;
}
  /*adjusts the width for mobile viewing*/
  @media screen and (max-width:500px){
    .portrait {
      min-width: 90%;
    }
  }

  /*The text element next to portrait*/
  .quote {
    font-size: 20px;
    text-align: left;
    padding: 25px;
    padding-top: 10px; 
    margin-top: -20px;
    background-color: var(--sunshine);
    box-shadow: 0px 5px var(--glow);
    border-radius: 7px;
  }

  .information {
    padding: 2%;
    display: grid;
    grid-template-columns: 45% 53%;
    column-gap: 10px;
    align-content: center;
    text-align: center;
  }

    .information {
    display: grid;
    grid-template-columns: 45% 53%;
    column-gap: 20px;
    align-content: center;
    text-align: center;
    }

  .information ul {
    line-height: 20px;
  }

  .information li {
    line-height: 20px;
    text-align: left;
  }

  @media screen and (max-width:500px){
    .information {
      grid-template-columns: auto;
      }

    .information div {
      max-width: 90vw;
      margin: auto;
      }
    }

  .info {
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    }

    .wrapper {
      background-color: var(--sunshine);
      border-radius: 7px;
      box-shadow: 0px 4px var(--glow);
      margin: 15px;
      padding: 2%;
      text-align: center;
      position: relative;
    }

  /* === ANIMATIONS === */

  .hovertext {
    margin-right: 1px;
    transition: margin 0.2s ease-in-out;
    animation: float 1.5s linear infinite;
  }
  
  
  @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);
  }
  
  /* === 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;
  }

  /*CODE USED IN RELATIONSHIPS SECTION*/

  #Relationships div {
    margin: 2%;
    padding: 16px;
  }

  #Relationships img {
    max-width: 150px;
    border-radius: 7px;
    border: 4px double var(--magenta);
  }

  .charas {
    display: flex;
    flex-wrap: wrap;/*keeps the characters on one line*/
    justify-content: center;
    align-content: center;
    
  }

  .charas div {
    position: relative;
    margin: 2%;
    background-color: var(--sunshine);
    border-radius: 7px;
    box-shadow: 0px 5px var(--glow);
    max-width: 25%;
    max-height: 350px;
    padding: 0%;
  }

  .charas img {
    max-height: 180px;
    border: 5px solid var(--primary-accent);
    border-radius: 7px;
    display: block;
    margin: auto;
  }

  .charas h3 {
    text-align: center;
    font-size: 22px;
  }

  .charas h4 {
    font-size: smaller;
    color: var(--glow);
    font-style: oblique;
    text-align: center;
    font-weight: 100;
  }

  .charas p {
    font-size: smaller;
    margin-top: 1%;
    
    text-align: center;
  }

  .charas .name {
    max-width: 100%;
    max-height: 150px;
    overflow: auto;

    background-color: var(--palesunshine);
    margin-top: 15px;
    box-shadow: none;
    margin-bottom: 0px;
    
  }

  .charas .name div{
    max-height: 200px;
    overflow: auto;
    
  }

  .charas a .name {
    text-align: center;
    text-decoration: none;
  }

  .charas a .name:hover {
    color: var(--glow);
  }

  .charas .rela {
    color: var(--glow);
    font-size: smaller;
    font-style: oblique;
    background: none;
    box-shadow: none;
    font-family: Mali;
    text-shadow: none;
    margin: 0%;
    padding: 0%;
  }

  /*this stuff is to make it work on mobile*/
  @media only screen and (max-width:800px){
    .innercontainer {
      padding: 0%;
    }

    #Relationships div {
      margin: 0px;
      margin-bottom: 2%;
    }

    .charas div {
      max-width: 100%;
      margin-bottom: 5%;
      max-height: none;
    }

    .charas .name {
      max-height: none;
    }

    #scrollTop {
      display: none;
    }

  }

