/*algemeen*/
@font-face{
    font-family: standaardFont;
    src: url(Poppins/Poppins-Regular.ttf);
}
*{
    font-family: standaardFont;
}
p{
    font-size: 13px;
}
h3{
    margin-bottom: 8px;
}
body{
    margin: 0;
    background: url(Pictures/background.png) no-repeat center;
    background-attachment: fixed;
    background-size: cover;
}
#hoofdtekst{
    display: flex;
    justify-content: flex-start;
}
#headerkeuzes{
    position: fixed;
    top: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: rgb(0, 3, 190);
}
#headerkeuzes li{
    list-style: none;
    padding: 14px;
}
#headerkeuzes li a{
    line-height: 200%;
    color: white;
    font-size: 125%;
    display: flex;
}
#headerkeuzes li:hover{
    background-color: rgb(0, 1, 88);
}
#inhoud{
    display: flex;
    overflow: auto;
    padding: 10px;
    margin-top: 68px;
    margin-bottom: 30px;
}
.inhoudlijst{
    line-height: fit-content;
    width: fit-content;
    list-style: none;
}
.inhoudlijst:nth-of-type(1){
    flex-grow: 1;
    min-width: 10%;
}
.inhoudlijst:nth-of-type(2){
    flex-grow: 2;
}
.inhoudlijst:nth-of-type(3){
    flex-grow: 1;
    min-width: 10%;
}
.inhoudtekst{
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
}
#voettekst{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 30px;
    display: flex;
    justify-content: flex-end;
    background: rgb(0, 3, 190);
}
#voettekst a{
    margin: 5px;
    color: white;
}

@media screen and (max-width: 640px){
    #hoofdtekst{
        width: 100%;
    }
    #headerkeuzes{
        width: 100%;
        position: fixed;
        top: 0;
        flex-direction: column;
        align-items: center;
        list-style-position: inside;
    }
    #headerkeuzes li{
        text-align: center;
        width: fit-content;
        padding: 5px;
    }
    #headerkeuzes li a{
        padding: 0;
    }
    #inhoud{
        margin-top: 250px;
    }
}

/*fotogalerij*/
.fotoblok{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    padding: 0;
}
.foto{
    padding: 10px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}
.foto img{
    width: 100%;
    height: auto;
    display: block;
}
@media (max-width: 640px){
    .foto{
        width: 70%;
    }
}

/*Contact*/
.formulier{
    padding: 20px;
}