#gallerycontainer::before {
    z-index: 1;
}

#gallerycontainer {
    height: calc(100vh - 92px - env(safe-area-inset-bottom));
    width: 100%;
    overflow: hidden!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    position: relative;
    opacity: 1;
    visibility: visible !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 768px) {
    #gallerycontainer {
        height: calc(100vh - 90px - env(safe-area-inset-bottom));
    }
}

.logo-glow {
    margin-bottom: auto;
}

#homegallery {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: hidden;
    transform: translateY(0%);
    -webkit-animation: slideUp 260s linear infinite;
    animation: slideUp 260s linear infinite;
    will-change: transform;
    animation-fill-mode: forwards;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(0%);
    }
    100% {
        transform: translateY(-100%);
    }
}