main{
    display: flex;
}
.content{
    flex: 1; /* Neemt alle beschikbare ruimte in naast de navigatie */
    padding: 2rem;
    background-color: rgb(255, 255, 255);
}
.titel-content{
    font-size: 2rem;
    margin-bottom: 10px;
    color: #9B6A6c;
}
.zin{
    color: grey;
    margin-top: 20px;
}
.container{
    height: 750px;
    background-color: white;
    padding: 2rem;
    margin-bottom: 30px;
    border-radius: 20px;
    border: rgb(229, 231, 235) 1px solid;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s; /* Vloeiende animatie bij hover */
}
.container-titel{
    margin-bottom: 20px;
}
.inhoud{
    height: 600px;
    background-color: rgb(233, 229, 229);
    display: flex; /* Centreert inhoud (iframe of tekst) */
    justify-content: center; /* Horizontaal gecentreerd */
    align-items: center; /* Verticaal gecentreerd */
    border-radius: 20px;
}
/* Iframe vult volledige container */
.inhoud iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}
.inhoud-tekst{
    font-size: 3rem;
}