.galleryrow {
    width: 33.3%;
    margin: 10px;
    margin-bottom: 0;
}

.galleryrow img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
}

#image-wrapper {
    display: flex;
    justify-content: center;
    margin: auto;
    max-width: 1520px;
}

@media (max-width: 1919px) {
    #imagecontainer {
        padding: 50px;
    }
}

@media (max-width: 1279px) {
    #imagecontainer {
        padding: 10px;
    }

    #image-wrapper {
        flex-wrap: wrap;
    }

    .galleryrow {
        width: 100%;
    }
}

/* Stylizowanie latających kluczyków */
.floating-keys-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.floating-key {
    position: absolute;
    font-size: 2rem;
    animation: float linear infinite;
    z-index: 10;
}

@keyframes float {
    from {
        transform: translateY(100vh) translateX(calc(100vw * var(--random-x))) rotate(0deg);
    }
    to {
        transform: translateY(-100vh) translateX(calc(100vw * var(--random-x))) rotate(360deg);
    }
}

