

@font-face {
    font-family: "Mochibop";
    src: url("https://chibinezu.neocities.org/fonts/Mochibop-Demo.ttf");
    font-display: swap;
}


  @font-face {
    font-family: "hearts";
    src: url("https://chibinezu.neocities.org/rainyhearts.ttf");
    font-display: swap;
  }



html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {

    background-image:
        url("https://i.imgur.com/TPIO4zJ.png");

    background-repeat: repeat;
    background-position: center top;
    background-attachment: fixed;

    overflow-x: hidden;

    font-family: Arial, sans-serif;

}



.page {

    position: relative;

    width: 900px;
    height: 650px;

    margin: 0 auto;

}




.quiz-results-title {

    font-family: 'Hearts', cursive;

    font-size: 40px;

    position: absolute;

    top: 30px;

    left: 0;

    width: 600px;

    height: auto;

    margin: 0;

    padding: 5px 10px;

    box-sizing: border-box;

    display: flex;

    justify-content: center;

    align-items: flex-start;

    flex-wrap: nowrap;

    white-space: nowrap;

    overflow: visible;

    z-index: 5;

}


.quiz-results-title span {

    display: inline-block;

    flex: 0 0 auto;

    background:
        linear-gradient(
            #ff0073
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;

    -webkit-text-fill-color: transparent;

    text-shadow:
        0px 1px 4px rgba(255,255,255,.95);

    animation:
        letterWave 2.4s ease-in-out infinite;

    will-change: transform;

    transform: translateY(0);

}




@keyframes letterWave {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}




.quiz-results-title span:nth-child(1) {
    animation-delay: 0s;
}

.quiz-results-title span:nth-child(2) {
    animation-delay: 0.08s;
}

.quiz-results-title span:nth-child(3) {
    animation-delay: 0.16s;
}

.quiz-results-title span:nth-child(4) {
    animation-delay: 0.24s;
}

.quiz-results-title span:nth-child(5) {
    animation-delay: 0.32s;
}

.quiz-results-title span:nth-child(6) {
    animation-delay: 0.40s;
}

.quiz-results-title span:nth-child(7) {
    animation-delay: 0.48s;
}

.quiz-results-title span:nth-child(8) {
    animation-delay: 0.56s;
}

.quiz-results-title span:nth-child(9) {
    animation-delay: 0.64s;
}

.quiz-results-title span:nth-child(10) {
    animation-delay: 0.72s;
}

.quiz-results-title span:nth-child(11) {
    animation-delay: 0.80s;
}



.description {

    width: fit-content;

    max-width: 450px;

    padding: 6px 14px;

    box-sizing: border-box;

    text-align: left;

font-family: 'Mochibop', cursive;

    font-size: 15px;

    color: #ff5fb5;

    background: white;

    border: 1px solid #f0d8e2;

    border-radius: 2px;

}




.section {

    width: 100%;

    margin-top: 10px;
    margin-bottom: 10px;

    padding: 4px 8px;

    box-sizing: border-box;

    font-family: 'Hearts', cursive;

    font-size: 20px;

    color: #ff5fb5;

    text-align: left;

    border-bottom: 1px solid #f0d8e2;

}



.graphics-box {

    position: absolute;

    left: 0;

    top: 145px;

    width: 540px;

    height: 380px;

    box-sizing: border-box;

    padding: 8px;

    background: white;

    border: 4px ridge #df858d;

    box-shadow:
        0 4px 10px rgba(70, 40, 50, 0.12);

}




.graphics-inner {

    width: 100%;

    height: 100%;

    box-sizing: border-box;

    background: white;

    border: 2px solid #f4dce0;

    overflow: hidden;

}




.graphics-content {

    width: 100%;

    height: 100%;

    box-sizing: border-box;

    overflow-y: scroll;

    overflow-x: hidden;

    padding: 10px;

    overscroll-behavior-x: none;

}




.description-inside {

    margin-bottom: 20px;

}



.graphics-content::-webkit-scrollbar {

    width: 20px;

}



.graphics-content::-webkit-scrollbar-track {

    background: #fff2f5;

    border-left: 2px solid white;

    border-right: 2px solid rgba(255,255,255,.8);

    box-shadow:
        inset 0 0 5px rgba(255,255,255,.7);

}




.graphics-content::-webkit-scrollbar-thumb {

    min-height: 55px;

    border-radius: 20px;

    border: 3px solid white;

    background:
        linear-gradient(
            to bottom,
            #ff9eb5 0%,
            #ffc77d 16%,
            #fff09a 32%,
            #b9e99b 48%,
            #7ed8d5 64%,
            #879bea 80%,
            #b58add 100%
        );

    box-shadow:
        inset 2px 2px 4px rgba(255,255,255,.9),
        inset -2px -2px 4px rgba(100,80,130,.12),
        0 0 3px rgba(255,255,255,.8);

}




.graphics-content::-webkit-scrollbar-thumb:hover {

    background:
        linear-gradient(
            to bottom,
            #ff8eab 0%,
            #ffbc68 16%,
            #ffed7d 32%,
            #a9e487 48%,
            #68ceca 64%,
            #778ce5 80%,
            #aa78d6 100%
        );

}




.graphics-gallery {

    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;

    justify-content: flex-start;

    column-gap: 18px;

    row-gap: 18px;

    width: 100%;

}




.graphic {

    flex: 0 0 auto;

    width: auto;

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    background: white;

    border-radius: 6px;

}




.graphic img {

    display: block;

    width: auto;

    height: auto;

    max-width: none;

}



.other-gallery {

    display: flex;

    flex-wrap: wrap;

    align-items: flex-start;

    justify-content: flex-start;

    gap: 10px;

    width: 100%;

    margin-bottom: 20px;

}




.other-item {

    flex: 0 0 auto;

    width: auto;

    margin: 0;

    padding: 2px;

    box-sizing: border-box;

}

.other-item img {

    display: block;

    width: 146.6px;

    height: auto;

    max-width: none;

}



.sailormoon {

    position: absolute;

    right: 10px;

    margin-top: -70px;

    margin-right: -40px;

    top: 180px;

    width: 300px;

    animation:
        floatUpDownPNG 0s ease-in-out infinite;

    user-select: none;

    -webkit-user-drag: none;

    -webkit-user-select: none;

    pointer-events: none;

}

.sailormoon img {

    display: block;

    width: 100%;

    height: auto;

    user-select: none;

    -webkit-user-drag: none;

}




@keyframes floatUpDownPNG {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}



@media (max-width: 1000px) {

    .page {

        transform-origin: top left;

        transform:
            scale(
                calc((100vw - 20px) / 900)
            );

        margin-left: 10px;

    }

}


#back-button {

    position: fixed;

    top: 20px;

    left: 10px;

    background: none;

    border: none;

    padding: 0;

    cursor: pointer;

}

#back-button img {

    display: block;

    width: 30px;

    height: auto;

}



#music-button {

    position: fixed;

    top: 20px;

    right: 20px;

    background: none;

    border: none;

    padding: 0;

    margin: 0;

    cursor: pointer;

    z-index: 9999;

}

#music-button img {

    display: block;

    width: 20px;

    height: auto;

    user-select: none;

    -webkit-user-select: none;

    -webkit-user-drag: none;

    pointer-events: none;

}

@import url('https://fonts.googleapis.com/css2?family=Lexend&display=swap');

.force-lexend * {
  font-family: "Lexend", sans-serif !important;
}

.toggle-button {
  position: fixed;
  top: 650px;
  right: 10px;
  background-color: #ffb6d9;
  border: 6px solid transparent;
  border-image: url("https://i.imgur.com/XfeCAP2.png") 7 fill round;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  color: #f12caa;
  z-index: 9999;
  user-select: none;
  transition: background-color 0.3s ease;
}

.toggle-button:hover {
  background-color: #ff9acc;
}
