* {
    margin: 0; 
    padding: 0;
}
.article-100-projecten {
    /* min-height: 100vh;  */
    background-color: #F8FAFB;
    display: flex;
    justify-content: center;
    align-items: start;
}
.hoofdstuk {
    display: flex;
    position: absolute;
    padding: 40px;
    margin-top: 20px;
}
#projecten {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    padding: 200px 0;
    width: 80%;
    justify-content: center; 
    align-items: center;
}
.project {
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    font-size: 30px;
    text-align: center; 
    border-radius: 10px;
    min-height: 250px;
    max-height: 250px;
    transition: filter 0.3s ease-in-out;
}
.project:hover {
    transform: scale(1.05); /* Het vak wordt iets groter */
    transition: filter 0.3s ease-in-out;
}
.project h2 {
    color: black;
    font-size: 2vw;
}
#projecten img {
    width: 100%;
    height: auto;
    filter: blur(2px); 
}
/* half article */
.article-50 {
    min-height: 50vh; 
    background-color: #F8FAFB;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
}
.toekomst-grid {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 250px;
    padding: 50px; 
}
.toekomst p{
    color: black; 
}
