/*--------------------HEADER-------------*/
header{
    background-color: #f1d4dda1;
    box-shadow:  #cbbdc1 5px 5px 5px;
    justify-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 90%;
    margin: 5em auto 6em auto;
    text-align: center;
}

header > h1{
    font-size: 30px;
    border-bottom: 5px solid #ffffff;
    margin: 0 auto;
    padding: 6% 10% 0em 10%;
}
header > h3{
    margin-top: 0.4em;
    padding-bottom: 5%;
    font-size: 18px;
}

/*--------------------INTROSTUKJE-----------------*/
#vakjesGrid{
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
    justify-content: center;
    gap: 0.3em;
    width: 100%;
    padding: 0.5em 0;
}
.vakje{
    background-color: #f8e7ecd4;
    border: rgb(255, 255, 255) solid 3px;
    width: 80%;
    display: flex;
    flex-direction: column;
    text-align: center;
    margin: 0.5em auto;
    padding: 1em;
}
.vakje > h3{
    margin: 0.1em 1em;
    border-bottom: 3px white solid;
}



/*--------------------CONTACT FORMULIER-----------------*/
#contactFormulier{
    width: 97%;
    margin: auto;
    margin-bottom: 3em;
}
#contactFormulier > h3 {
    text-align: center;
    margin-bottom: 0.5em;
}

#contactFormulier > form{
    display: grid;
    grid-template-rows: auto auto auto;
    background-color: #F1D4DD;
    border-radius: 1em;
    padding: 1em;
}

form > div{
    display: grid;
    grid-template-rows: auto auto auto auto auto auto;
}

label, input, textarea{
    width: 90%;
    margin: auto;
}
input, textarea{
    border: 0;
    border-radius: 3px;
    margin-bottom: 0.5em;
    padding: 0.3em;
    background-color: rgba(255, 255, 255, 0.69);
}

label{
    border-bottom: solid white 2px;
    margin: 0.2em auto;
}
textarea{
    overflow-y: scroll;
    scrollbar-color: white;
    height: 5em;
    resize: none;
    margin-bottom: 1em;
}

#submit{
    width: max-content;
    padding: 0.5em 1em;
    margin: 0.7em auto;
}
::placeholder{
    color: #777777;
}



/*----------------RESPONSIVE------------*/
@media screen and (min-width: 680px){
    #vakjesGrid{
        grid-template-rows: 1fr;
        grid-template-columns: 30% 30% 30%;
    }
    form{
        grid-template-columns: 1fr 1fr;
    }
}