/* This thing is largely bashed together from SadGrl's layout template (at https://sadgrl.online/projects/layout-builder/) and https://www.w3schools.com/ and some StackOverflow threads */
@font-face { font-family: Quicksand; src: url('Quicksand.ttf'); } 
@font-face { font-family: Quicksand; font-weight: bold; src: url('Quicksand.ttf');}
:root {
  --header-image: url('https://sadhost.neocities.org/images/layouts/wp.jpeg');
  --body-bg-image: url('https://images.pyonkotchi.com/valphone bg tile.png');

  /* colors */
  --content: #43256E;
  --site-navigation-font-font-size-value:1.2
}

body {
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  color: #801168;
  margin: auto 0;
  background-image: var(--body-bg-image);
  background-attachment: fixed;
  display: grid;
  grid-template-columns: auto;
  cursor: url(/images/cursor.png), default;
  

}
@keyframes fadeIn {
            to {
                opacity: 1;
            }
        }

* {
  box-sizing: border-box;

}
.bigger {
  font-size:1.4em;}

#container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 20px 20px 20px 20px;
  opacity: 0;
  animation: fadeIn 2s forwards;
  
}
#page-content {
  background-color: rgba(255, 255, 255, 0.87);
}
html,
body {
  height: 100vh;
  width: 100%;
}


a {
  color: #d621ac;
  font-weight: 500;
  text-decoration: none;
  cursor: url(/images/cursorglow.png), default;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a {
  color: #f02c97;
  text-decoration: none;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  


}

a:hover {
  color: #63ceff;
}


#header {
  width: 100%;

  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  background-color: #d4d4d4;
  height: 150px;

}


main {
  background-color: rgba(255, 255, 255, 0.87);

  padding: 20px 20px 20px 20px;
  text-align: justify;
  height: 100%;
  /* this is the width of your layout! */
  /* if you change the above value, scroll to the bottom
  and change the media query according to the comment! */
  margin: 0 auto;
  box-shadow: 0px 0px 8px 8px rgba(255, 255, 255, 0.82);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  

  /* this centers the entire page */
}

h1 {
  color: #f02c97 !important;
  text-align: left;
  width: 100%;
  text-decoration: none;
  font-family: "Pacifico", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  padding-top: 10px;
  
  

}

h2,
h3,
.h2 {

  text-align: left;
  padding-top: 10px;

}
.padbox {
  padding: 50px;

}
.padfld {
  padding-left: 36px;
}
.h1:after,
.h4:after {
  content: "";
  display: flex;
  
  max-width: 100%;
  margin-bottom: 5px;
  border-bottom: 1px solid #f4a5d1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

}

h4 {
  text-align: left;
  font-size: 25px !important;
  margin: 0px;
  width: 100%;
  padding-top: 30px;
}

footer {
  background-color: #ffdef3;
  width: 100%;
  padding-top: 10px;
  border-top: 3px solid;
  border-image-slice: 1;
  border-image-source: linear-gradient(to bottom right, #e98807 0%, #ffe33f 2%, #ffff61 25%, #f6b64a 30%, #ffff 40%, #ffe33f 45%, #f6b64a 50%);
}
.social-icons a{
  margin-right:0.5em;}
.imagehere {
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 100%;

}

figure {

  align-content: center;
  max-width: 310px;

}

figcaption {
  font-style: italic;
  padding: 2px;
  text-align: center;
  display: inline-block;
}

.clickable {

  cursor: url(/images/cursorglow.png), default;
}

.center {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 15px;
  margin: 15px;


}

/* GALLERY SETTINGS */

.container {
  display: flex;
  justify-content: center;
  
  
}

.gallery2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery2 img {
  max-width: auto;
  max-height: 150px;
  object-fit: cover;
  margin: 5px;
  cursor: url(/images/cursorglow.png), default;
  border-radius: 3%;
  object-position: top;
}
.gallery2 img:hover{
  max-width: auto;
  max-height: 150px;
  object-fit: cover;
  margin: 5px;
  cursor: url(/images/cursorglow.png), default;
  border-radius: 3%;
  transition: 0.3s;
  transform: scale(1.05);
  object-position: top;
  box-shadow:  0 0 15px rgba(255, 101, 199, 0.693);
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  
  background-color: rgba(255, 171, 217, 0.685);
  z-index: 999;
  overflow: hidden;
}

.lightbox-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: scale-down;
}

/* The Close Button */
.close-btn {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close-btn:hover,
.close-btn:focus {
  color: #999;
  text-decoration: none;
  cursor: url(/images/cursorglow.png), default;
}

.gallerybuttons {
  float: left;
  width: 170px;
  height: 170px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  margin: 5px;
  border: 1px #f4a5d1;

}
.gallerybuttons:hover {
  
  transition: 0.3s;
  transform: scale(1.1);
}

.gallerybuttons3 {
  float: left;
  width: 170px;
  height: 170px;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  margin: 5px;
  border: 1px #f4a5d1;

}

.galleryimage {
  float: left;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  margin: 5px;
  border: 1px #f4a5d1;
  border-radius: 50%;
  width: 170px;
  height: 170px;


}

.galleryimagev {
  float: left;
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center;
  margin: 5px;
  border: 1px #f4a5d1;
  border-radius: 50%;
  width: 170px;
  height: 170px;

}

.gallery3 {
  background-color: none;
  padding: 10px 10px 20px -50px;
  overflow: hidden;
  max-width: 1000px;
  margin: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  filter: grayscale(60%);


}

h1,
h2,
h3,
.h2,
h4 {
  color: #f02c97;
  font-family: "Pacifico", cursive;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
}

.h3,
.h4 {
  color: #f02c97;
  font-family: "Pacifico", cursive;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  padding-top: 10px;
}

.h6 {
  color: #7a0360;
  font-family: "Pacifico", cursive;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  padding-top: 0px;
}

h1 {
  font-size: 40px;
}

h2,
.h2 {
  font-size: 30px;
}

h3,
h4 {
  font-size: 25px;
}

.h5 {
  font-size: 20px;
}

.box {
  background-color: #ffdef3;
  border: 1px solid #f4a5d1;
  padding: 10px;
}



#toc {
  float: left;
  width: 220px;
  max-height: 75%;
  margin-right: 10px;
  margin: 10px 20px 10px 0px;
  background-color: #ffdef3;
  border: 1px solid #ff9ed3;
  border-radius: 15px;
  overflow: auto;


}

.tocbar {
  float: right;
  width: 220px;
  right: 0;
  margin-right: auto;
  border-radius: 15px;
  position: fixed;
  overflow: auto;
}


ol {
  padding-left: 6%;

  list-style-type: none;
  li:before {
    content: '\2665';
    margin-left: -5px;
    margin-right: 10px;
    color: #ff58c5;
  }
}

li {
  padding-top: 0.2em;
  list-style-position: inside;


}
ul {
  
}
ul ul {
  list-style-type:none;
  list-style-image:none;
  li:before {
    content:'\2661';
    margin-right:10px;
    color:#ff58c5
  }
}
ul {
  padding-left: 3%;
  text-align: left;
  list-style-image:url(https://pyonkotchi.com/images/bullet.svg);
  list-style-position:inside
}

ul ul {
  list-style-type: none;

  li:before {
    content: '\2661';
    margin-right: 10px;
    color: #ff58c5;
  }
}
ul ul ul {
  list-style-type: none;

  li:before {
    content: '\2726';
    margin-right: 10px;
    color: #ff58c5;
  }
}
ol ol {
  list-style-type: none;

  li:before {
    content: '\2661';
    margin-right: 10px;
    color: #ff58c5;
  }
}

ol ol ol {
  list-style-type: none;

  li:before {
    content: '\2606';
    margin-right: 10px;
    color: #ff58c5;
  }
}

/* Side bar image */

.charactermain-image {
  height: auto;
  width: 350px;
  margin-left: auto;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  border: 1px #e13995;
  border-radius: 15px;
  position: relative;
  cursor: url(/images/cursorglow.png), default;

}

.tablechart {
  height: auto;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-position: center;
  border: 1px #e13995;
  position: relative;
  cursor: url(/images/cursorglow.png), default;
  text-align: center;

}

td img {
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.characterprofile {
  float: right;
  height: auto;
  width: auto;
  margin-left: auto;
  margin: 0px 0px 20px 20px;
  background-color: #ffdef3;
  border-radius: 15px;
  overflow: hidden;
  

}

.characterprofile2 {
  float: left;
  height: auto;
  width: auto;
  margin-right: auto;
  margin: 20px 20px 20px 0px;
  background-color: #ffdef3;
  border-radius: 15px;

}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

#pink {
  background-color: #ff9ed3;
}

table {
  border-collapse: separate;
  border-spacing: 0;
  width: 350px;

  border-radius: 15px;
  overflow: hidden;
}

tbody {
  margin: 3px 10px;
  border-radius: 15px;
}

table tr th,
table tr td {
  border-right: 1px solid #f4a5d1;
  border-bottom: 1px solid #f4a5d1;

}

table tr th:first-child,
table tr td:first-child {
  border-left: 1px solid #f4a5d1;
}

table tr th {
  background: #eee;
  border-top: 1px solid #f4a5d1;
  text-align: left;
}


/* top-left border-radius */
table tr:first-child th:first-child {
  border-top-left-radius: 15px;
}

/* top-right border-radius */
table tr:first-child th:last-child {
  border-top-right-radius: 15px;
}

/* bottom-left border-radius */
table tr:last-child td:first-child {
  border-bottom-left-radius: 15px;
}

/* bottom-right border-radius */
table tr:last-child td:last-child {
  border-bottom-right-radius: 15px;
}


table th {
  background: #ff9ed3 !important;
  padding: 10px 0px;

  border-right: 1px solid #f4a5d1;

}

td,
th {
  text-align: left;
  padding: 5px 5px;
  border-right: 1px solid #f4a5d1;

}

td:nth-child(odd) {
  font-weight: 600;
  text-align: left;
}

tr:nth-child(odd) {
  background-color: #ffe7f7;
}

#style1 {

  table {
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;

    border-radius: 15px;
    overflow: hidden;
  }

  tbody {
    margin: 3px 10px;
    border-radius: 15px;
  }

  table tr th,
  table tr td {
    border-right: 1px solid #f4a5d1;
    border-bottom: 1px solid #f4a5d1;

  }

  table tr th:first-child,
  table tr td:first-child {
    border-left: 1px solid #f4a5d1;
  }

  table tr th {
    background: #eee;
    border-top: 1px solid #f4a5d1;
    text-align: left;
  }


  /* top-left border-radius */
  table tr:first-child th:first-child {
    border-top-left-radius: 15px;
  }

  /* top-right border-radius */
  table tr:first-child th:last-child {
    border-top-right-radius: 15px;
  }

  /* bottom-left border-radius */
  table tr:last-child td:first-child {
    border-bottom-left-radius: 15px;
  }

  /* bottom-right border-radius */
  table tr:last-child td:last-child {
    border-bottom-right-radius: 15px;
  }


  table th {
    background: #ff9ed3 !important;
    padding: 10px 0px;
    
    border-right: 1px solid #f4a5d1;

  }

  td,
  th {
    text-align: left;
    padding: 5px 5px;
    border-right: 1px solid #f4a5d1;

  }

  td:nth-child(odd) {
    text-align: left;
    font-weight: 500;
  }

  tr:nth-child(odd) {
    background-color: #ffe7f7;
  }

  tr:nth-child(even) {
    background-color: #ffdcf2;
  }

}


/* MEDIA QUERY */

@media only screen and (max-width: 1350px) {
  main {
    float: left;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin: 1em 0px 0px 00px;
    padding: 0px;
  }
  
}

@media only screen and (max-width: 900px) {

  .characterprofile {
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
  }

  .characterprofile {
    float: left;
    width: 100%;
    margin: 0px 0px 30px 0px;
  }

  @media only screen and (max-width: 900px) {

    .characterprofile2 {
      float: left;
      width: 100%;
      margin: 0px 0px 0px 0px;
    }

    .characterprofile2 {
      float: left;
      width: 100%;
      margin: 0px 0px 30px 0px;
    }

    main {
      padding: 20px;
    }

    .charactermain-image {
      width: 100%;
      margin: 0px 0px 10px 00px;

    }

  }


  .responsive {
    width: 70%;
    height: auto;
  }
}

.top {
  place-self: end;
  position: sticky;
  bottom: 20px;
  margin-right: 50px;
  margin-top: -100px;


  /* visual styling */
  color: #fff;
  background: none;
  border-radius: 100px;
  white-space: nowrap;
}
.top {
  z-index: 1000 !important; /* Keep it above content but below chat */
}


@media only screen and (max-width: 900px) {
  #toc {
    float: left;
    width: 100%;
    max-width: 300px;

    margin: 10px 20px 10px 0px;
    background-color: #ffdef3;
    border: 1px solid #ff9ed3;
    border-radius: 15px;


  }

  .top {
    place-self: end;
    position: sticky;
    bottom: 20px;
    margin-right: 0px;
    margin-top: -100px;


    /* visual styling */

    color: #fff;
    background: none;
    border-radius: 100px;
    white-space: nowrap;
  }
}


@media only screen and (max-width: 600px) {
  .padbox {
    padding: 5px;
  }
  .padfld {
    padding-right: 10px;
  }
  .gallerybuttons {
    width: 130px;
    height: 130px;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: 5px;
    border: 1px #f4a5d1;
  }
.lightbox-image {
  display: block;
  margin: auto auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 0;
}

  .galleryimage {
    float: left;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: 5px;
    border: 1px #f4a5d1;
    border-radius: 50%;
    width: 125px;
    height: 125px;


  }

  

  .galleryimagev {
    float: left;
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center;
    margin: 5px;
    border: 1px #f4a5d1;
    border-radius: 50%;
    width: 125px;
    height: 125px;

  }

  .center {
    display: block;
    justify-content: space-around;
    align-items: center !important;
    padding: 15px;
    margin: 15px;
    max-width: 100%;


  }

  /* Style the button */
  .button {
    background-color: #ff9ed3;
    border: none;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    color: #7a0360;
    margin-top: 10px;
    width: 100%;

  }

  .button:hover {
    color: #FFF !important;
    background-color: #88c7ff;

  }


}

/* Style the button */
.button {
  background-color: #ff9ed3;
  border: none;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 15px;
  color: #7a0360;
  transition: 0.2s;

}

.button:hover {
  color: #FFF !important;
  background-color: #88c7ff;

}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ffdef3;
  background-color: #ff9ed3;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: url(/images/cursorglow.png), default;
  padding: 14px 16px;
  transition: 0.2s;
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  color: #7a0360;
}

@media only screen and (max-width: 900px) {
  table {
    

    margin: 0;
    padding: 0;
    width: 100%;    
    table-layout: fixed;
    overflow-x: auto;
  }
  th, td {
    padding: 15px;
  }
  
  .tablechart {
    height: auto;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    border: 1px #e13995;
    cursor: url(/images/cursorglow.png), default;
   

  
  }
  
}
@media only screen and (max-width: 600px) {
  td {
    text-align: left;
    font-size:90%;
    
  }
}
@media screen and (max-width: 600px) {

  /* USE THESE CLASSES TO HIDE CONTENT ON MOBILE */
 .mobile-hide {
    display: none !important;

 }
 .gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px !important;
  
}
 .gallery img {
  width: 100px !important;
  height: 100px !important;}
  
  
#container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  
}

.gallerythumbs {
  width: 120px !important;
}
}
@media screen and (min-width: 600px) {

  /* USE THESE CLASSES TO SHOW CONTENT ON MOBILE */
 .mobile-show {
    display: none !important;
 }

  
}


/* Style the tab */
.tab {
  overflow: hidden;
  background:none;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ffc9e7;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #cd93ff;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;

  border-top: none;
}
@media screen and (max-width: 600px) {

.gallery2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.modal-content img {
  max-width: 100%;
  max-height: 100%;
}

.gallery2 img {
  max-width: auto;
  max-height: 150px;
  object-fit: cover;
  margin: 5px;
  cursor: url(/images/cursorglow.png), default;
  border-radius: 3%;
  object-position: top;
}
.gallery2 img:hover{
  max-width: auto;
  max-height: 150px;
  object-fit: cover;
  margin: 5px;
  cursor: url(/images/cursorglow.png), default;
  border-radius: 3%;
  transition: 0.3s;
  transform: scale(1.05);
  object-position: top;
  box-shadow:  0 0 15px rgba(255, 101, 199, 0.693);
}
  details {
    background-color: #ff9ed3 !important;
    border-radius: 15px;
    width: 100% !important;
    margin: auto;
    
    clear: both;
    
   
  }
  
  summary {
    color: #801168;  
    cursor: url(/images/cursorglow.png), default;
    background-color: #ff9ed3;
    
    font-size: 25px;
    font-family: "Pacifico", cursive;
    border-right: 1px solid #f4a5d1;
    border-radius: 15px;
    text-align: center;

    clear: both;
    
  
  }
  details > p {
    padding: 0px;
    
    
  
  }

}


summary {
  color: #801168;  
  cursor: url(/images/cursorglow.png), default;
  background-color: #ff9ed3;
  
  font-size: 25px;
  font-family: "Pacifico", cursive;
  border-right: 1px solid #f4a5d1;
  border-radius: 15px;
  text-align: center;
  justify-content: center;
  margin: 0 auto;
  clear: both;

}

details {
  background-color: #ff9ed3 !important;
  border-radius: 15px;
  width: 80%;
  justify-content: center;
  margin: 0 auto;
  clear: both;
  
 
}

details[open] summary {
  background-color: #ff9ed3;

}


details > p {
  padding: 5px;
  

}

summary:focus,
summary:hover {
  background-color: #ff9ed3;
  border-radius: 15px;
}
h2.galleryHeading {
  font-family: "Pacifico", cursive;
 
  outline: 2px solid #ff9de33d;
  margin: 10px;
  padding: 5px;
  border-radius: 5px;
  background:#ffe4f3 url(/images/rainbowtile.png);
  background-size:100% auto;
  width:100%;
  text-decoration:none;
  font-weight:400;
  font-style:normal;
  font-size:25px !important;

  text-align:center !important;
  line-height: 1.1em;

  text-shadow: #f16ad4 2px 2px 2px;
  color: white;
} 
/* BELOW THIS POINT IS GALLERY */

.gallerythumbs {
  width: 160px;
  outline: 2px solid #ff63d36e;
  background-color: #fff5fe;
  border-image-width: 5px;
  border-image-source: url("https://static.tumblr.com/vsycwa1/9nurvtcax/pale7_opacity2.png");
  border-image-repeat: round;
  border-image-slice: 100;
  border-radius: 5px;
  padding: 5px;
  border-spacing: 5px;
  text-align: center;
  cursor: url(/images/cursorglow.png), default;
}

.gallerydesc {
  padding: 5px;
  text-align: center;
  font-size: 12px; 
}
.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin: 20px;

}
.gallery img {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  
  object-fit: cover;
  object-position: top;
  
  
}
.gallerythumbs:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px #ff9ed3;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery img:active {
  box-shadow: 0 2px 4px #ff9ed3;
}
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: auto;
  width: auto;
  overflow: hidden;
  background-image:url('https://images.pyonkotchi.com/lightboxbg.png');
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn .6s forwards;
}
.modal-content {
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: center;
}
.modal-content img {
  max-height: 700px;
  max-width: auto;
}
.modal-content .arrow {
  font-size: 40px;
  color: rgb(125, 0, 87);
  cursor: url(/images/cursorglow.png), default;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.modal-content .arrow.left {
  left: 100px;
}
.modal-content .arrow.right {
  right: 100px;
}
@media screen and (max-width: 600px) {
.modal-content .arrow.left {
  left: 10px;
}
.modal-content .arrow.right {
  right: 10px;
}
.modal-content .arrow {
  font-size: 40px;
  color: rgb(125, 0, 87);
  cursor: url(/images/cursorglow.png), default;
  position: absolute;
  top: 85%;
  transform: translateY(-50%);
}
}
.pagedoll {
  filter:drop-shadow(2px 0 0 white) drop-shadow(0 2px 0 white) drop-shadow(-2px 0 0 white) drop-shadow(0 -2px 0 white) drop-shadow(0px 1px 1px #FF73BA) drop-shadow(0px 1px 1px #FF73BA);
  margin: 10px;
  transition: transform .2s;
}
.pagedoll:hover {
  transform: rotate(5deg);
}

.marquee-container {
  height: 70px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border: transparent;
  box-shadow: transparent;
  max-width:88vw;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
.marquee img:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 4px #ff9ed3;
  transition: transform 0.1s ease;
}

.marquee span {
  font-size: 18px;
  color: #ffffff; 
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff;
}
@keyframes marquee {
  from {
      transform: translateX(100%);
  }
  to {
      transform: translateX(-100%);
  }
}

.gradoutline {
  background: -webkit-linear-gradient(pink, hotpink);
  -webkit-background-clip: text;
  -webkit-text-stroke: 4px transparent;
  color: black;
  font-size: 2em;
  font-family:arial;
  }

  .prinzessin mark { 
    background: -webkit-linear-gradient(pink, hotpink);
   -webkit-background-clip: text;
   -webkit-text-stroke: 4px transparent;
    
    font-size:2em;
    font-weight:bold;
    background: none;
    color:#8f0c70;
    animation: princess 2s infinite;
    animation-timing-function: cubic-bezier(0.25, 0.85, 0.4, 1);
    }
    
    .prinzessin mark:nth-child(1) { animation-delay:0s; display:inline-block;}
    .prinzessin mark:nth-child(2) { animation-delay:0.2s; display:inline-block;}
    .prinzessin mark:nth-child(3) { animation-delay:0.4s; display:inline-block; }
    .prinzessin mark:nth-child(4) { animation-delay:0.6s; display:inline-block;}
    .prinzessin mark:nth-child(5) { animation-delay:0.8s; display:inline-block;}
    .prinzessin mark:nth-child(6) { animation-delay:1s; display:inline-block;}
    .prinzessin mark:nth-child(7) { animation-delay:1.2s; display:inline-block;}
    .prinzessin mark:nth-child(8) { animation-delay:1.4s; display:inline-block;}
    .prinzessin mark:nth-child(9) { animation-delay:1.6s; display:inline-block;}
    .prinzessin mark:nth-child(10) { animation-delay:1.8s; display:inline-block;}
    
    @-webkit-keyframes princess {
    from { transform:scale(0.90); color:#ffe0f8; }
    50% { transform:scale(1); color:#e944c2; }
    to { transform:scale(0.90); color:#ffa8ef; }
    }
    
    @keyframes princess {
    from { transform:scale(0.90); color:#ff65d3; }
    50% { transform:scale(1); color:#8f0c70; }
    to { transform:scale(0.90); color:#ff87e7; }
    }
    
    .hover:hover {
      transform: scale(1.05) translateY(-3px);
      transition: transform 0.2s ease;
    }