:root {
    --blue: #1b33be;
}

.bigImageLabel {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1100;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 2rem;
    padding: 0.5em 1em;
    border-radius: 10px;
    pointer-events: none;
    text-align: center;
}
.hiddenNavButton {
    display: none !important;
}

/* Gallery css styles */
.galleryBody {
    background-color: gray;
    flex-direction: column;
    display: flex;
    font-family: "Darumadrop One", sans-serif;
}
button {
    font-family: "Darumadrop One", sans-serif;
    background-color: rgba(223, 49, 49, 0.8);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    text-decoration: none;
    color: white;
    font-size: 1rem;
    &:hover {
        background-color: rgba(223, 49, 49, 1);
    }
}
.homeButton {
    position: absolute;
    left: 2rem;
    top: 1rem;
    padding: 0.5rem 1rem;
}
.topBar {
    flex-direction: row;
    position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.biomeThreeTitleGallery {
    font-size: 1rem;
    margin: 0 1rem;
}
.resetTimerGallery {
    font-size: 1rem;
    margin: 0 1rem;
}
.gallerySection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
}
.galleryNav {
    width: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--blue);
    justify-content: space-around;
    max-height: 250px;
    border-radius: 10px;
}
.galleryContainer {
    width: 80%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    padding: 2rem;
    background-color: var(--blue);
    border-radius: 10px;
}
.galleryImage {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(24, 117, 255, 0.349);
    transition: transform 0.3s, box-shadow 0.3s;
    &:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(24, 117, 255, 0.549);
    }
}
.bigImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 8px 16px rgba(24, 117, 255, 0.749);
    cursor: pointer;
    background: rgba(0,0,0,0.85);
    &:hover {
        transform: none;
        box-shadow: none;
    }
}

/* Move Buttons */
.leftButton, .rightButton {
    box-shadow: none;
    z-index: 10000;
    width: 70px;
    height: 50px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.leftButton {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}
.rightButton {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}