.textbox {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 30px;
    justify-content: center;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.gallery .gallery-row {
    display: flex;
    max-width: 80%;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.gallery .gallery-row img {
    width: auto;
    border-radius: 5px;
    height: 300px;
}

.gallerykategori .gallery-row img{
    width: auto,;
    height: 300px;
}

.buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    gap: 20px;
}

.buttons button {
    background-color: #d0205e;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
}

@media(max-width: 768px){
    .buttons{
        flex-wrap: wrap;
    }
    .gallery .gallery-row img{
        width: 40%;
        height: auto;
    }
}