.galerij__container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    padding-top: 8em;
    padding-bottom: 5em;
}

.galerij__container p{
    width: fit-content;
}

.galerij__container__header{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.galerij__container__header h1{
    margin-bottom: -0.5rem;
}

.galerij__content{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.galerij__content div, .future{
    width: fit-content;
    
    height: fit-content;
    min-height: 12rem;
    max-width: 30rem;
    border-radius: 10px;
    padding: 0.5rem;
    transition: scale 0.3s ease-in-out;
    position: relative
}

.galerij__content div::after{
    content: "voorbij";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    clear: both;
    background: var(--tertiary-color);
    padding:0.5rem 1rem;
    padding-top: 0.3rem;
    border-radius: 10px;
    color: white;
    font-weight: 600;
}

.future::after{
    content: "toekomstig"!important;
    background: green !important;
}

.event h2{
    margin-top: -0.5rem;
    width: fit-content;
    font-size: 1.5rem;
}

.event p{
    width: fit-content;
    font-size: 1rem;
}

.event img{
    aspect-ratio: auto;
    width: 80vw;
    max-width: 15rem;
    height: 100%;
    border-radius: 10px;
}