html {
    height:100%;
    scroll-behavior: smooth;
}

body {
    margin:0;
}

.bg {
    animation:slide 3s ease-in-out infinite alternate;
    background-image: linear-gradient(-60deg, #6c3 50%, #09f 50%);
    bottom:0;
    left:-50%;
    opacity:.5;
    position:fixed;
    right:-50%;
    top:0;
    z-index:-1;
}

.bg2 {
    animation-direction:alternate-reverse;
    animation-duration:4s;
}

.bg3 {
    animation-duration:5s;
}

.content {
    background-color:rgba(255,255,255,.8);
    border-radius:.25em;
    box-shadow:0 0 .25em rgba(0,0,0,.25);
    box-sizing:border-box;
    left:50%;
    padding:10vmin;
    position:fixed;
    text-align:center;
    top:50%;
    transform:translate(-50%, -50%);
}

h1 {
    font-family:monospace;
}

@keyframes slide {
    0% {
        transform:translateX(-25%);
    }

    100% {
        transform:translateX(25%);
    }
}
#fullpage {
    display: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: contain;
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    background-color: black;
}
#sortedGallery {
    padding: 40px;
    margin: 0 auto;
}

.filter-button{
    font-size: 18px;
    border: 1px solid #6c3;
    border-radius: 5px;
    text-align: center;
    color: #09f;
    margin-bottom:30px;
}
.filter-button:hover{
    font-size: 18px;
    border: 1px solid #6c3;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    background-color: #6c3;
}
.btn-default:active .filter-button:active{
    background-color: #6c3;
    color: #fff;
}
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 80%;
    max-height: 80%;
    border-radius: 5px;
}
.custombanner {
    height: auto;
    background-image: url('../img/bouw/20180309_175545.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 50px;
    position: relative;
    z-index: 0;
}
.custombanner::before {
            content: '';
            background-color: rgba(255, 255, 255, 0.6); /* 50% opacity white */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
/* Custom styles */
.navbar {
            /* Background image */
            background-image: url('../img/bouw/IMG-20220322-WA0001.jpg');
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center;
            padding: 15px;
            position: relative;
            z-index: 0;
        }
        .navbar::before {
            content: '';
            background-color: rgba(255, 255, 255, 0.5); /* 50% opacity white */
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        .navbar-brand img {
            max-width: 100%;
            height: auto;
        }