* {
    box-sizing: border-box;
}


@font-face {
    font-family: pixelFont;
    src: url(./fonts/pixel-font-v1-5.ttf);
}

@font-face {
    font-family: jpPixel;
    src: url(./fonts/BestTen-DOT.otf);
}

@font-face {
    font-family: PlanetaryContact;
    src: url(./fonts/PlanetaryContact.ttf);
}

@font-face {
    font-family: Amoria;
    src: url(./fonts/AMORIA.otf);
}

body {
    margin: 0;
    background-image: url(./images/background-starsky.gif);
}

a {
    text-decoration: underline;
}

p {
    margin: 0;
}

ul {
    list-style: none;
    margin: 0;
}

:root {
    --light-green: #b2ff9e;
    --neon: #affc41;
    --light-teal: #13ecc1;
    --dark-teal: #0da981;
    --ourple: #531c87;
    --light-blue: #dbe1ff;
    --navy: #0a1158;
    --background: repeating-linear-gradient(
        #fafeff 0%,
        #fafeff 0.2%,
        #d2f3fa 0.5%,
        #d2f3fa 0.7%
    );
}

.normal-button {
    font-family: pixelFont;
    font-size: 18px;
    padding: 0 5px;
    border: 4px double #080525;
    border-radius: 5px;
    color: #080525;
    background-color: var(--light-blue);
}

.normal-button:hover {
    background-color: #b3b4f1;
}

/*#bg-ufo {
    position: fixed;
    top: 350px;
    left: -150px;
    z-index: -999;
    animation: fly 30s linear 3s infinite;
}

@keyframes fly {
    100% {
        transform: translateX(150vw) translateY(-20vh);
    }
}*/


/*BODY*/


#header, #main-body, #footer {
    width: 50%;
    margin: 0 auto;
}

.container {
    border: 9px var(--light-teal) double;
    border-radius: 10px;
}

.bullet {
    width: 20px;
}

.content {
    background: var(--background);
    border: 4px double var(--ourple);
    border-radius: 5px;
    width: fit-content;
    height: fit-content;
    overflow: auto;
    padding: 5px;
}

.header {
    font-family: PlanetaryContact;
    margin: 10px 0;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    text-align: center;
    color: var(--light-blue);
    font-size: 26px;
}

.small-header {
    font-family: pixelFont;
    font-size: 36px;
    font-weight: bold;
    color: var(--light-blue);
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

.normal-text {
    font-size: 22px;
    font-family: pixelFont;
}

.color-light {
    color: var(--light-blue);
}

.color-navy {
    color: var(--navy);
}

.goback {
    width: 60px;
}

/*BANNER*/

#header {
    height: 200px;
    margin: 15px auto;
    background-image: url(./images/banner-test2.gif);
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

#title-container {
    display: flex;
    align-items: center;
}

/*.header-title {
    font-size: 60px;
    font-family: Amoria;
    display: inline-block;
    margin: 0 0 50px 0;
    color: var(--light-blue);
    text-shadow: 4px 6px #1b093b;
}*/

#header-gif {
    display: inline-block;
    width: 80px;
    margin: 0 5px 50px 5px;
}

#title-txt-alt {
    width: calc(0.9 * 951.5px);
    margin-bottom: 20px;
}

#subtitle {
    font-family: sans-serif;
    color: white;
    font-size: 16px;
    position: absolute;
    top: 270px;
    left: 48%;
}


/*MAIN CONTENT*/

#main-body {
    display: flex;
    gap: 5px;
    --side-width: 30%;
    --body-height: 1000px;
}

#sidebar-left, #sidebar-right, #main-doc {
    border: 5px #d2f3fa inset;
    /*background-image: url(./images/QHGDAvk.jpeg);*/
    height: var(--body-height);
}

#sidebar-left, #sidebar-right {
    width: var(--side-width);
    max-width: var(--side-width);
    overflow: hidden;
    height: 600px;
}

/*MAIN DOC CONTENT*/

#main-doc {
    /*width: calc(100% - var(--side-width));*/
    width: 100%;
    height: fit-content;
    background: repeating-linear-gradient(
        #4a92ff60 0%,
        #4a92ff60 0.2%,
        #69a5ff60 0.5%,
        #69a5ff60 0.7%
    );
    position: relative;
}

.divider {
    width: 90%;
    margin: 30px auto;
}

.center-img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.noWrap {
    white-space: nowrap;
}

#description-box {
    width: 600px;
    height: 400px;
    display: flex;
    padding: 6px;
    overflow: hidden;
}

#desc-left {
    width: 40%;
    height: 100%;
    padding-top: 20px;
}

#desc-right {
    width: 60%;
    height: 100%;
    background-color: #bebebe;
    border: 4px inset #888888;
    padding: 5px;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#desc-right-text {
    display: flex;
    flex-direction: column;
    align-items: end;
}

#pfp {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px double #0a1158;
    background-image: url(./images/about/usagi-funny.jpg);
    background-size: 135%;
    background-position-x: -15px;
}

.desc-category {
    font-size: 18px;
    padding: 0 6px;
    width: 100%;
    height: 25px;
    background-color: #d1d1d1;
    border: 2px outset #a0a0a0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desc-text {
    font-size: 18px;
}

.sidebar-desc {
    width: 0px;
    height: 0px;
    overflow: hidden;
}

.noselect {
    user-select: none;
}

.input-bar {
    width: 234px;
    text-align: right;
}

#toggle-name>input {
    display: none;
}

#toggle-name>input:checked+label #name-closed {
    display: none;
}

#toggle-name>input:not(:checked)+label #name-open {
    display: none;
}

body:has(#toggle-name > input:checked) #name-content {
    width: 95%;
    height: fit-content;
    overflow: auto;
    border: 2px outset #a0a0a0;
    background-color: #d1d1d1;
    padding: 5px;
}

#toggle-quest>input {
    display: none;
}

#toggle-quest>input:checked+label #quest-closed {
    display: none;
}

#toggle-quest>input:not(:checked)+label #quest-open {
    display: none;
}

body:has(#toggle-quest > input:checked) #quest-content {
    width: 95%;
    height: fit-content;
    overflow: auto;
    border: 2px outset #a0a0a0;
    background-color: #d1d1d1;
    padding: 5px;
}

#toggle-color>input {
    display: none;
}

#toggle-color>input:checked+label #color-closed {
    display: none;
}

#toggle-color>input:not(:checked)+label #color-open {
    display: none;
}

body:has(#toggle-color > input:checked) #color-content {
    width: 95%;
    height: fit-content;
    overflow: auto;
    border: 2px outset #a0a0a0;
    background-color: #d1d1d1;
    padding: 5px;
}

#toggle-desc>input {
    display: none;
}

#toggle-desc>input:checked+label #desc-closed {
    display: none;
}

#toggle-desc>input:not(:checked)+label #desc-open {
    display: none;
}

body:has(#toggle-desc > input:checked) #desc-content {
    width: 95%;
    height: fit-content;
    overflow: auto;
    border: 2px outset #a0a0a0;
    background-color: #d1d1d1;
    padding: 5px;
}

#toggle-links>input {
    display: none;
}

#toggle-links>input:checked+label #links-closed {
    display: none;
}

#toggle-links>input:not(:checked)+label #links-open {
    display: none;
}

body:has(#toggle-links > input:checked) #links-content {
    width: 95%;
    height: fit-content;
    overflow: auto;
    border: 2px outset #a0a0a0;
    background-color: #d1d1d1;
    padding: 5px;
}




/* INTERESTS */

#interests-box {
    width: 50%;
    height: fit-content;
    min-height: 570px;
    margin-left: 40px;
}

.interests-category {
    display: flex;
    justify-content: space-between;
    width: 300px;
    align-items: center;
    /*gap: 25px;*/
    margin-bottom: 15px;
}

.gray-arrow {
    width: 35px;
    height: 40px;
}

#toggle-animation>input {
    display: none;
}

#toggle-animation>input:checked+label #animation-closed {
    display: none;
}

#toggle-animation>input:not(:checked)+label #animation-open {
    display: none;
}

body:has(#toggle-animation > input:checked) #animation-content {
    width: 100%;
    height: fit-content;
    overflow: auto;
    background: var(--background);
    border: 4px double var(--ourple);
    border-radius: 5px;
    padding: 15px;
}

#toggle-games>input {
    display: none;
}

#toggle-games>input:checked+label #games-closed {
    display: none;
}

#toggle-games>input:not(:checked)+label #games-open {
    display: none;
}

body:has(#toggle-games > input:checked) #games-content {
    width: 100%;
    height: fit-content;
    overflow: auto;
    background: var(--background);
    border: 4px double var(--ourple);
    border-radius: 5px;
    padding: 15px;
}

#toggle-favMusic>input {
    display: none;
}

#toggle-favMusic>input:checked+label #favMusic-closed {
    display: none;
}

#toggle-favMusic>input:not(:checked)+label #favMusic-open {
    display: none;
}

body:has(#toggle-favMusic > input:checked) #favMusic-content {
    width: 100%;
    height: fit-content;
    overflow: auto;
    background: var(--background);
    border: 4px double var(--ourple);
    border-radius: 5px;
    padding: 15px;
}

/* MUSIC */

#music-box {
    width: 227px;
    height: 118px;
    margin-top: 30px;
}

#music-img {
    width: 50px;
    height: 50px;
    border: 2px solid var(--ourple);
}

#musicbox-top-row {
    display: flex;
    height: 50px;
    max-height: 50px;
    align-items: center;
    gap: 6px;
}

#song-name {
    margin: 0;
}

.scroll-text {
    height: 32px;
    width: fit-content;
    white-space: nowrap;
    animation: name-scroll 8s linear infinite;
}

.scrolling {
    width: 150px;
    height: 32px;
    overflow: hidden;
    white-space: nowrap;
}

#song-name:hover {
    text-decoration: underline;
}

@keyframes name-scroll {
    0% {transform: translateX(170px);}
    100% {transform: translateX(-210px);}
}

#song-artist {
    margin: -10px 0 0 0;
}

.music-button {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

#musicbox-buttons {
    display: flex;
    justify-content: end;
    gap: 72px;
    margin-top: 5px;
}

#controls {
    display: flex;
    gap: 10px;
}

#song-slider {
    width: 90%;
    height: 5px;
}

.slider {
    appearance: none;
    background: #0a1158;
    cursor: pointer;
}

#song-slider::-webkit-slider-thumb {
    appearance: none;
    background-color: #dbe1ff;
    border: 2px solid #0a1158;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

#volume-slider {
    height: 5px;
    width: 70px;
    position: absolute;
    top: 353px;
    left: 355px;
    display: none;
    transform: rotate(-90deg);
    z-index: 999;
}

/* MISC STUFF */

#entrapta-gif-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: fit-content;
    margin: 95px auto 55px auto;
}

.ilovespace {
    width: 350px;
    height: auto;
}

#quiz-scroll-box {
    height: 150px;
    width: auto;
    margin: 30px 40px 0 40px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
}

.quiz-img {
    height: 150px;
}

.quiz-scrolling {
    display: flex;
    animation: bottom-scroll 8s linear infinite;
}

@keyframes bottom-scroll {
    0% {transform: translateX(0);}
    100% {transform: translateX(-100%);}
}

#astronaut-1 {
    width: 300px;
    height: auto;
    position: absolute;
    top: 775px;
    right: 80px;
    animation: astronaut 5s ease-in-out infinite;
}

#astronaut-2 {
    width: 85px;
    height: auto;
    position: absolute;
    top: 750px;
    right: 30px;
    animation: astronaut-reverse 5s ease-in-out infinite;
}

@keyframes astronaut {
    0% {transform: translateY(-10px);}
    50% {transform: translateY(10px);}
    100% {transform: translateY(-10px);}
}

@keyframes astronaut-reverse {
    0% {transform: translateY(10px);}
    50% {transform: translateY(-10px);}
    100% {transform: translateY(10px);}
}

/*FOOTER*/