.homeImg .top {
    justify-content: center;
    align-items: center;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.homeImg .bottom {
    justify-content: center;
    align-items: center;

    display: flex;
}

.homeImg a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.homeImg img {
    width: auto;
    max-width: 100%;
    transition-property: opacity;
    transition-duration: 0.5s;
}

.homeImg .top img {
    opacity: 1;
}

.homeImg .top a:hover img {
    opacity: 0.5;
}

.homeImg .top a:focus img {
    opacity: 0.5;
}

.homeImg .top text {
    margin-bottom: 3rem;

    opacity: 0;
    transition-property: opacity;
    transition-duration: 0.5s;
}

.homeImg .top a:hover text {
    opacity: 1;
}

.homeImg .top a:focus text {
    opacity: 1;
}

.aboutIllustHover {
    position: absolute;
    opacity: 0;
}

.bottom a:hover .aboutIllustHover {
    opacity: 0.5;
}

.bottom a:focus .aboutIllustHover {
    opacity: 0.5;
}

.aboutIllustIdle {
    opacity: 1;
    transition-property: opacity;
    transition-duration: 0.5s;

    z-index: 1;
}

.bottom a:hover .aboutIllustIdle {
    opacity: 0;
}

.bottom a:focus .aboutIllustIdle {
    opacity: 0;
}

.homeSection, .topHomeSection, .aboutSection {
    padding: 5rem;
}

.gameCover, .character, .track, .threeDee {
    background-color: #22212e;
    padding: 1rem;
}

/* TEXT */
.topHomeSection h2 {
    font-size: 30px;
    font-weight: 300;
}

.topHomeSection h2 {
    color: white;
}

.topHomeSection h2 strong {
    color: #92e4a4;
    font-weight: 600;
}

.homeSection h2 {
    font-size: 30px;
    font-weight: 400;
    color: #92e4a4;
}

/* GAMES */

.gameSection {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1rem;
}

.gameCover {
    width: 50vw;
    max-width: 250px;
}

.gameCover p {
    padding: 0;
}

.gameCover h3 {
    font-weight: 600;
    color: #92e4a4;
}

/* ART */

.galleryFilters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Hide gallery entries by default; JS adds .show to matching items */
.content {
    display: none;
}

.content.show {
    display: block;
}

.character, .threeDee {
    width: 100vw;
    max-width: 20vw;
}

/* MUSIC */

.track {
    max-width: 20vw;
}

.track audio {
    width: 100%;
    color-scheme: dark;
}

.track h3 {
    margin: 1rem;
}

.track h4 {
    margin: 1rem;
}

.track p {
    margin: 1rem;
}

/* RESPONSIVENESS */

@media screen and (max-width: 920px) {
    .homeSection, .gameSection, .aboutSection {
        padding: 1rem;
        flex-wrap: wrap;
    }

    .gameSection, .gallery {
        align-items: center;
        justify-content: center;
    }

    .gameCover {
        width: 100%;
        max-width: 250px;
    }

    .gameCover .zoomImg {
        display: block;
        margin: 0 auto;
    }

    .zoomImg {
        max-width: 30vw;
    }

    .track {
        width: 100vw;
        max-width: 100%;
    }

    .character {
        width: 100vw;
        max-width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 725px) {
    .gameCover {
        text-align: center;
    }
}


@media screen and (max-width: 1130px) {
    .homeImg .top img {
        width: 50%;
    }
}

@media screen and (max-width: 1000px) { /* Mobile */
    .aboutIllustHover {
        opacity: 0;
    }

    .bottom a:hover .aboutIllustHover {
        opacity: 0;
    }
    .bottom a:focus .aboutIllustHover {
        opacity: 0;
    }

    .bottom a:hover .aboutIllustIdle {
        opacity: 0.5;
    }

    .bottom a:focus .aboutIllustIdle {
        opacity: 0.5;
    }
}