/* Index */
.indexBody {
    background-color: #190751;
    background-image: url("../images/index-bg.png");
    background-attachment: fixed;
    font-family: "Jersey 15", sans-serif;
}

.jersey-15-regular {
  font-family: "Jersey 15", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Links */
a:link {
    color: #ffccff;
}
a:visited {
    color: #cc66ff;
}
a:hover {
    color: #e6b3ff;
}
a:active {
    color: white;
}

/* Header */
.header {
    text-align: center;
}

        .header h1 {
            font-size: 70px;
            color: white;
            margin-bottom: 5px;
        }
        .header p {
            background-color: rgba(0, 0, 0, 1);
            font-size: 20px;
            color: white;
            margin-top: 5px;
            margin: auto;
        }
        .header hr {
            border: 2px dashed white;
            max-width: 50%;
            margin-bottom: 30px;
        }


/* Main Body */ 
.container {
    display: flex;
    justify-content: center;
    background-color: rgba(187, 153, 255, 0.8);
    max-width: 75%;
    padding: 20px;
    margin: auto;
    border: 4px solid #4c00e6;
    border-radius: 10px;
}

.navContainer {
    background-color: #4b22c3;
    height: 500px;
    width: 300px;
    padding-top: 10px;
}
        .navContainer button {
            background-color: black;
            color: white;
            font-family: "Jersey 15", sans-serif;
            font-size: 25px;
            height: 44px;
            width: 280px;
            border: none;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 5px;
            padding: 5px;
            }
        .navContainer button:hover {
            background-color: #190751;
            cursor: pointer;
        }
        .navContainer button:active {
            background-color: #29136c;
            cursor: pointer;
        }
        .navContainer hr {
            border: 20px solid black;
            width: 260px;
        }

        #stampsBoxLabel {
            background-color: black;
            margin: 20px 10px 5px 10px;
            color: white;
            font-size: 22px;
            padding: 10px;
        }
                .stamps {
                    text-align: center;
                    background-color: black;
                    margin-left: 10px;
                    margin-right: 10px;
                    margin-bottom: 5px;
                    height: 150px;
                    color: white;
                    font-size: 20px;
                    padding: 5px;
                    overflow: auto;
                }

.box {
    display: grid;
    grid-template-areas: 
        "content1 content1 content1"
        "box1 box2 box3";
    grid-template-columns: 33% 30% 33%;
    grid-template-rows: 50% 45%;
    height: 300px;
    width: 500px;
    background-color: #4b22c3;
    border: 4px solid white;
    padding: 10px;
    margin-left: 20px;
    margin-right: 20px;
    gap: 10px;
    overflow: scroll;
}

    .box div {
        background-color: #d580ff;
    }
        .content1 {
            grid-area: content1;
            font-size: 25px;
            border: 2px solid black;
            padding: 10px;

        }
        .box1 {
            grid-area: box1;
        }
        .box2 {
            grid-area: box2;
            text-align: center;
        }
                #indexLinks {
                    display: flex;
                    flex-wrap: wrap;
                    justify-content: space-evenly;
                    align-content: center;
                    row-gap: 10px;
                }

                #indexLinks img {
                    border-radius: 3px;
                }
        .box3 {
            grid-area: box3;
        }
        /* .box div {
            background-color: #d580ff;
            border: 2px solid white;
            height: 125px;
            width: 145px;
            padding: 5px;
            text-align: center;
            font-size: 20px;
        } */

.updateBox {
    background-color: #4b22c3;
    height: 500px;
    width: 300px;
    padding-top: 10px;
}
        #updateBoxLink {
            margin: 5px 10px 5px 10px;
        }
        #updateDate {
            background-color: black;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 5px;
            color: white;
            font-size: 22px;
            padding: 10px;
        }
                #updateDesc {
                    background-color: black;
                    margin-left: 10px;
                    margin-right: 10px;
                    margin-bottom: 5px;
                    height: 150px;
                    color: white;
                    font-size: 20px;
                    padding: 5px;
                    overflow: auto;
                }
                .updateList {
                    list-style-type: square;
                    padding-right: 5px;
                    margin-top: 10px;
                }

                    .updateList li {
                        padding-bottom: 5px;
                    }
        #creditsLabel {
            background-color: black;
            margin: 20px 10px 5px 10px;
            color: white;
            font-size: 22px;
            padding: 10px;
        }
                #creditsBox {
                    background-color: black;
                    margin-left: 10px;
                    margin-right: 10px;
                    margin-bottom: 5px;
                    height: 150px;
                    color: white;
                    font-size: 20px;
                    padding: 5px;
                    overflow: auto;
                }


/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 1);
    width: 100%;
    height: 100px;
    margin-top: 50px;
}
        #neocities {
            opacity: 75%;
            margin-top: 25px;
            margin-left: 20px;
        }



/* Changelog */
.changelogBody {
    background-image: url("../images/changelog-bg2.png");
    background-position: 50% 15%;
    background-repeat: no-repeat;
}



/* About */
.aboutBody {
    background-color: #190751;
    background-image: url("../images/index-bg.png");
    background-attachment: fixed;
    font-family: "Jersey 15", sans-serif;
}

.aboutContainer {
    display: grid;
    grid-template-areas: 
        "header header header"
        "nav content content"
        "footer footer footer";
    height: 800px;
    width: 660px;
    margin-top: 50px;
    margin-left: 50px;
    border-radius: 5px;
}

        .aboutHeader {
            grid-area: header;
            background-color: black;
            height: 100px;
        }
                .aboutHeader h1 {
                    color: white;
                    font-size: 70px;
                    margin-top: 10px;
                    margin-bottom: 0px;
                    margin-left: 20px;
                }

        .aboutNav {
            grid-area: nav;
            background-color: #4b22c3;
            height: 600px;
            width: 175px;
            padding-top: 10px;
        }
            .aboutNav button {
            background-color: black;
            color: white;
            font-family: "Jersey 15", sans-serif;
            font-size: 25px;
            height: 44px;
            width: 155px;
            border: none;
            margin-left: 10px;
            margin-right: 10px;
            margin-bottom: 5px;
            padding: 5px;
            }
            .aboutNav button:hover {
                background-color: #190751;
                cursor: pointer;
            }
            .aboutNav button:active {
                background-color: #29136c;
                cursor: pointer;
            }
            .aboutNav hr {
                border: 20px solid black;
                width: 175px;
            }

        .aboutContent {
            grid-area: content;
            background-color: rgba(187, 153, 255, 0.8);
            height: 600px;
            width: 485px;
            padding-top: 10px;
            overflow: auto;
        }
                .aboutContent div {
                    background-color: #d580ff;
                    border: 4px solid #4b22c3;
                    margin-left: 10px;
                    margin-right: 10px;
                    margin-bottom: 10px;
                    padding: 10px;
                    font-size: 20px;
                }

        .aboutFooter {
            grid-area: footer;
            background-color: black;
            height: 100px
        }

#aboutIntroduction {
    display: block;
}
    .aboutIntroHeader {
        text-decoration: underline;
        font-weight: bold;
        margin: 0px;
        font-size: 30px;
    }
    .aboutIntroP {
        text-indent: 50px;
        margin: 10px 0px;
    }
    #aboutIntroButton {
        background-color: black;
        cursor: default;
    }
        #aboutIntroButton:hover {
            background-color: #190751;
            cursor: pointer;
        }

#aboutInterests {
    display: block;
}
    #aboutInterestsButton {
        background-color: black;
    }

#aboutEtc {
    display: block;
}
    #aboutEtcButton {
        background-color: black;
    }





/* Art */

.artBody {
    background-color: #190751;
    background-image: url("../images/index-bg.png");
    background-attachment: fixed;
    font-family: "Jersey 15", sans-serif;
    height: 100%;
}

.artBody p {
    color: white;
    font-size: 30px;
}

#containerArt {
    display: grid;
    grid-template-areas: 
        "header content"
        "menu content"
        "footer footer";
    grid-template-columns: 20% 80%;
    color: white;
}

    .head {
        background-color: black;
        grid-area: header;
        height: 135px;
    }
            .head h1 {
                font-size: 70px;
                text-align: center;
                margin-top: 10px;
                margin-bottom: 0px;
            }
            .head hr {
                border: 2px dashed white;
                margin-top: 0px;
                margin-bottom: 0px;
            }

    .galleryContainer {
        grid-area: content;
        padding: 50px;
        padding-bottom: 0px;
        font-size: 50px;
    }
            .gallery {
                display: flex;
                flex-wrap: wrap;
                background-color: rgba(187, 153, 255, 0.25);
                padding: 20px;
                border: 2px solid #29136c;
                border-radius: 3px;
                overflow: scroll;
                align-items: center;
                justify-content: center;
                max-height: 705px;
            }
                    #expandedImgContainer {
                        background-color: #190751;
                        width: 1830px;
                        height: 980px;
                    }
                        #expandedImg {
                            width: 100%;
                            height: 100%;
                            object-fit: contain;
                            position: absolute !important;
                            margin: 5px;
                        }
                        #closeButton {
                            grid-area: content;
                            position: absolute;
                            top: 0px;
                            margin-top: 0px;
                            right: 15px;
                            color: white;
                            font-size: 75px;
                            cursor: pointer;
                        }


                .gallery .img1 {
                    height: 20%;
                    width: 20%;
                    border: 5px solid rgba(255, 255, 255, 0.75);
                    border-radius: 5px;
                    margin: 10px;
                }
                .gallery .img2 {
                    height: 25%;
                    width: 25%;
                    border: 5px solid rgba(255, 255, 255, 0.75);
                    border-radius: 5px;
                    margin: 10px;
                }
                .gallery .img3 {
                    height: 30%;
                    width: 30%;
                    border: 5px solid rgba(255, 255, 255, 0.75);
                    border-radius: 5px;
                    margin: 10px;
                }
                .gallery img:hover {
                    cursor: pointer;
                }
            .galleryPag {
                background-color: #d580ff;
                text-align: center;
                font-size: 35px;
                height: 50px;
            }

            .galleryPag a {
                color: black;
                padding-left: 10px;
            }
                .hidden {
                    clip: rect(0 0 0 0);
                    clip-path: inset(50%);
                    height: 1px;
                    overflow: hidden;
                    position: absolute;
                    white-space: nowrap;
                    width: 1px;
                }

    .artNav {
        grid-area: menu;
        background-color: #4b22c3;
        height: 705px;
        padding-top: 10px;
        overflow: scroll;
    }
            .artNav button {
                background-color: black;
                color: white;
                font-family: "Jersey 15", sans-serif;
                font-size: 25px;
                height: 44px;
                width: 94%;
                border: none;
                margin-left: 10px;
                margin-right: 10px;
                margin-bottom: 5px;
                padding: 5px;
            }
            .artNav button:hover {
                background-color: #190751;
                cursor: pointer;
            }
            .artNav button:active {
                background-color: #29136c;
                cursor: pointer;
            }
            .artNav hr {
                border: 20px solid black;
                width: 89%;
                }

    .footerArt {
        background-color: black;
        grid-area: footer;
        height: 100px;
    }






/* JUPITER */
.jupiterBody {
    background-color: black;
    width: 50%;
    margin: auto;
}

/* Jupiter Animation */
.jupiter {
    animation-name: jupiterFloat;
    animation-duration: 20s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

@keyframes jupiterFloat {
    0% {transform: translateY(0);}
    25% {transform: translateY(20px);}
    50% {transform: scale(0.98);}
    60% {transform: translateX(-2px);}
    75% {transform: translateX(4px);}
    100% {transform: translateY(0);}
}