body {
    background-color: rgb(32, 32, 32);
    color: rgb(255, 255, 255);
    margin: 0;
    min-height: 100vh; /* Ensure the body covers the full viewport height */
}

.text-content {
    padding: 5%;
    font-size: 25px;
    text-shadow: rgb(151, 151, 151) 1px 0 3px;
    width: 30%;
}

.text-content >p{
    font-size: 20px;
}

.gallerij{
    width: 90%;
    height: 100%;
    display: grid;
    gap: 2%;
    grid-template-columns: auto auto auto;
    margin-left: 6%;
}
.gallerij-item{
    background-color: #333;
    width: 90%;
    margin-bottom: 5%;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Schaduw van het vak */
    text-decoration: none;
    color: rgb(255, 255, 255)
}
.gallerij-item >img{
    width: 96%;
    margin: 2%;
}

.gallerij-item >h2{
    margin: 2%;
    margin-bottom: 4%;
    margin-left: 4%;
    font-size: 35px;
}

@media screen and (max-width: 1150px) {
    .gallerij{
        width: 90%;
        height: 100%;
        display: grid;
        gap: 2%;
        grid-template-columns: auto;
        margin-left: 6%;
    }
    .gallerij-item{
        background-color: #333;
        width: 90%;
        margin-bottom: 5%;
        border-radius: 5px;
        box-shadow: rgba(255, 255, 255, 0.181) 20px 20px 20px -20px;
    }
    .gallerij-item >img{
        width: 96%;
        margin: 2%;
    }
    
    .gallerij-item >h2{
        margin: 2%;
        margin-bottom: 4%;
        margin-left: 4%;
        font-size: 30px;
    }
}