@font-face {
    font-family: 'lobster';
    src: url(../fonts/KaushanScript-Regular.ttf);
}






body{
    background-color: #DEB697;
    font-family: lobster;
}
.ontwerp{
    font-size: 30px;
}
.infoblok{
    background-color: #D9D9D9;
    display: flex;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 10px;
    height: 6vh;
    width: 40vw;
    margin: auto;
    align-items: center;
    justify-content: space-around;
}
.knoppen{
    display: flex;
    justify-content: space-between;
}
a{
    color: black;
    text-decoration: none;
    padding: 10px;
}
a:hover{
    color: #ff0000;
    border-radius: 20px;
}

.berichtblok{
    background-color: #D9D9D9;
    display: flex;
    justify-content: space-around;
    height: 85vh;
    width: 90vw;
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 10px;
    margin: auto;
    margin-top: 30px;
    flex-direction: column;

}
.textblok{
    background-color: white;
    height: 70vh;
    width: 40%;
    padding: 10px;
    border-radius: 20px;
    border: 1px solid #000000;
    margin-top: 20px;


}
.imagesize {
width: 100%;
height: 100%;
border-radius: 20px;
}
p{
    font-family: Arial, Helvetica, sans-serif;
}
.welkom {
    font-size: 38px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    margin-top: 20px;
}
.knoppen2{
    display: flex;
    margin-top: 20px;
}
.text-image{
    display: flex;
    justify-content: space-around;
    flex-direction: row;
}
@media (max-width: 768px) {
    .berichtblok {
        flex-direction: column;
        width: 90%;
        height: auto;
    }
    .textblok {
        width: 90%;
        height: 90%;
    }
    .text-image {
        flex-direction: column;
        align-items: center;
    }
    .imagesize {
        width: 60%;
        height: auto;
        justify-content: center;
    }
    .ontwerp{
        font-size: 20px;
    }
    .welkom {
        font-size: 28px;
    }
    .infoblok {
        width: 80vw;
        height: 10vh;
        flex-direction: column;
        gap: 10px;
    }
    
}