/* Photos */





/* Photo gallery */

.gallery {
    display: none;
}

.gallery.active {
    display: flex;
    gap: 1.2vw;
    align-items: flex-start; /* zorgt dat kolommen boven starten */
    width: 100%;
}

.gallery .column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
}

.gallery img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-size: 18px;
    border: none;
    outline: none;
    background-color: rgba(109, 91, 91, 1);
    color: rgba(255, 255, 255, 1);
    cursor: pointer;
    padding: 15px;
    margin: 20px 0 30px 0;
    border-radius: 22px;
    min-width: 30px;
}

button.active {
    background-color: rgba(204, 55, 77, 1);
    color: rgba(255, 255, 255, 1);
    transition: background-color 400ms ease-in 30ms;
}







/* Scroll up button */

#myButton {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 999;
    border-radius: 30px;
    min-width: 45px;
    background-color: rgba(204, 55, 77, 1);
}